continuing with the overhaul, allowed entities to wear stuff
This commit is contained in:
parent
c169a1eae6
commit
c2759e9e8e
6 changed files with 148 additions and 13 deletions
104
raws/items.json
104
raws/items.json
|
|
@ -97,6 +97,110 @@
|
|||
"flags": ["EQUIP_SHIELD"],
|
||||
"effects": { "ac": "4", "melee_power_bonus": "-2" }
|
||||
},
|
||||
{
|
||||
"id": "equip_body_weakleather",
|
||||
"name": { "name": "leather jacket", "plural": "leather jackets" },
|
||||
"renderable": { "glyph": "[", "fg": "#aa6000", "bg": "#000000", "order": 2 },
|
||||
"flags": ["EQUIP_BODY"],
|
||||
"effects": { "ac": "1" }
|
||||
},
|
||||
{
|
||||
"id": "equip_body_leather",
|
||||
"name": { "name": "leather chestpiece", "plural": "leather chestpiece" },
|
||||
"renderable": { "glyph": "[", "fg": "#aa6000", "bg": "#000000", "order": 2 },
|
||||
"flags": ["EQUIP_BODY"],
|
||||
"effects": { "ac": "2" }
|
||||
},
|
||||
{
|
||||
"id": "equip_body_studdedleather",
|
||||
"name": { "name": "studded leather chestpiece", "plural": "studded leather chestpieces" },
|
||||
"renderable": { "glyph": "[", "fg": "#aa6000", "bg": "#000000", "order": 2 },
|
||||
"flags": ["EQUIP_BODY"],
|
||||
"effects": { "ac": "3" }
|
||||
},
|
||||
{
|
||||
"id": "equip_body_ringmail_o",
|
||||
"name": { "name": "orcish ring mail", "plural": "orcish ring mail" },
|
||||
"renderable": { "glyph": "[", "fg": "#aa6000", "bg": "#000000", "order": 2 },
|
||||
"flags": ["EQUIP_BODY"],
|
||||
"effects": { "ac": "3" }
|
||||
},
|
||||
{
|
||||
"id": "equip_body_ringmail",
|
||||
"name": { "name": "ring mail", "plural": "ring mail" },
|
||||
"renderable": { "glyph": "[", "fg": "#aa6000", "bg": "#000000", "order": 2 },
|
||||
"flags": ["EQUIP_BODY"],
|
||||
"effects": { "ac": "4" }
|
||||
},
|
||||
{
|
||||
"id": "equip_head_leather",
|
||||
"name": { "name": "leather cap", "plural": "leather caps" },
|
||||
"renderable": { "glyph": "[", "fg": "#aa6000", "bg": "#000000", "order": 2 },
|
||||
"flags": ["EQUIP_HEAD"],
|
||||
"effects": { "ac": "1" }
|
||||
},
|
||||
{
|
||||
"id": "equip_head_elvish",
|
||||
"name": { "name": "elvish leather helm", "plural": "elvish leather helms" },
|
||||
"renderable": { "glyph": "[", "fg": "#aa6000", "bg": "#000000", "order": 2 },
|
||||
"flags": ["EQUIP_HEAD"],
|
||||
"effects": { "ac": "2" }
|
||||
},
|
||||
{
|
||||
"id": "equip_head_o",
|
||||
"name": { "name": "orcish helm", "plural": "orcish helm" },
|
||||
"renderable": { "glyph": "[", "fg": "#aa6000", "bg": "#000000", "order": 2 },
|
||||
"flags": ["EQUIP_HEAD"],
|
||||
"effects": { "ac": "2" }
|
||||
},
|
||||
{
|
||||
"id": "equip_head_iron",
|
||||
"name": { "name": "iron helm", "plural": "iron helm" },
|
||||
"renderable": { "glyph": "[", "fg": "#aa6000", "bg": "#000000", "order": 2 },
|
||||
"flags": ["EQUIP_HEAD"],
|
||||
"effects": { "ac": "3" }
|
||||
},
|
||||
{
|
||||
"id": "equip_feet_leather",
|
||||
"name": { "name": "leather shoes", "plural": "leather shoes" },
|
||||
"renderable": { "glyph": "[", "fg": "#aa6000", "bg": "#000000", "order": 2 },
|
||||
"flags": ["EQUIP_FEET"]
|
||||
},
|
||||
{
|
||||
"id": "equip_feet_elvish",
|
||||
"name": { "name": "elvish leather shoes", "plural": "elvish leather shoes" },
|
||||
"renderable": { "glyph": "[", "fg": "#aa6000", "bg": "#000000", "order": 2 },
|
||||
"flags": ["EQUIP_FEET"],
|
||||
"effects": { "ac": "1" }
|
||||
},
|
||||
{
|
||||
"id": "equip_feet_o",
|
||||
"name": { "name": "orcish boots", "plural": "orcish boots" },
|
||||
"renderable": { "glyph": "[", "fg": "#aa6000", "bg": "#000000", "order": 2 },
|
||||
"flags": ["EQUIP_FEET"],
|
||||
"effects": { "ac": "1" }
|
||||
},
|
||||
{
|
||||
"id": "equip_feet_iron",
|
||||
"name": { "name": "iron boots", "plural": "iron boots" },
|
||||
"renderable": { "glyph": "[", "fg": "#aa6000", "bg": "#000000", "order": 2 },
|
||||
"flags": ["EQUIP_FEET"],
|
||||
"effects": { "ac": "2" }
|
||||
},
|
||||
{
|
||||
"id": "equip_neck_protection",
|
||||
"name": { "name": "amulet of protection", "plural": "amulets of protection" },
|
||||
"renderable": { "glyph": "\"", "fg": "#aa6000", "bg": "#000000", "order": 2 },
|
||||
"flags": ["EQUIP_NECK"],
|
||||
"effects": { "ac": "1" }
|
||||
},
|
||||
{
|
||||
"id": "equip_back_protection",
|
||||
"name": { "name": "cloak of protection", "plural": "cloaks of protection" },
|
||||
"renderable": { "glyph": "[", "fg": "#aa6000", "bg": "#000000", "order": 2 },
|
||||
"flags": ["EQUIP_BACK"],
|
||||
"effects": { "ac": "1" }
|
||||
},
|
||||
{
|
||||
"id": "wand_magicmissile",
|
||||
"name": { "name": "wand of magic missile", "plural": "wands of magic missile" },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue