Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] Allow quivers to contain arrows and bolts again #41122

Closed
wants to merge 3 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions data/json/items/armor/ammo_pouch.json
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@
"id": "quiver",
"type": "ARMOR",
"name": { "str": "quiver" },
"description": "A leather quiver worn at the waist that can hold 20 arrows. Activate to store arrows.",
"description": "A leather quiver worn at the waist that can hold 20 arrows or bolts. It can be unloaded or reloaded.",
"weight": "260 g",
"volume": "500 ml",
"price": 6500,
Expand All @@ -321,14 +321,14 @@
"coverage": 10,
"encumbrance": 3,
"material_thickness": 1,
"pocket_data": [ { "ammo_restriction": { "arrow": 20, "bolt": 20 }, "moves": 20 } ],
"pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "arrow": 20, "bolt": 20 }, "moves": 20 } ],
"flags": [ "WAIST", "OVERSIZE", "WATER_FRIENDLY" ]
},
{
"id": "quiver_birchbark",
"type": "ARMOR",
"name": { "str": "birchbark quiver" },
"description": "A quiver woven from strips of birch bark, worn at the waist, that can hold 20 arrows. Activate to store arrows.",
"description": "A quiver woven from strips of birch bark, worn at the waist, that can hold 20 arrows or bolts. It can be unloaded or reloaded.",
"weight": "490 g",
"volume": "500 ml",
"price": 6500,
Expand All @@ -342,14 +342,14 @@
"coverage": 10,
"encumbrance": 10,
"material_thickness": 1,
"pocket_data": [ { "ammo_restriction": { "arrow": 20, "bolt": 20 }, "moves": 20 } ],
"pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "arrow": 20, "bolt": 20 }, "moves": 20 } ],
"flags": [ "WAIST", "VARSIZE", "OVERSIZE", "WATER_FRIENDLY" ]
},
{
"id": "quiver_large",
"type": "ARMOR",
"name": { "str": "large quiver" },
"description": "A large leather quiver trimmed with metal, worn on the back, that can hold 60 arrows. Historically used by horse archers, rather than foot archers, but neither of THEM had to fight zombies. Activate to store arrows.",
"description": "A large leather quiver trimmed with metal, worn on the back, that can hold 60 arrows or bolts. Historically used by horse archers, rather than foot archers, but neither of THEM had to fight zombies. It can be unloaded or reloaded.",
"weight": "920 g",
"volume": "1500 ml",
"price": 8800,
Expand All @@ -363,14 +363,14 @@
"coverage": 15,
"encumbrance": 3,
"material_thickness": 1,
"pocket_data": [ { "ammo_restriction": { "arrow": 60, "bolt": 60 }, "moves": 20 } ],
"pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "arrow": 60, "bolt": 60 }, "moves": 20 } ],
"flags": [ "BELTED", "OVERSIZE", "WATER_FRIENDLY" ]
},
{
"id": "quiver_large_birchbark",
"type": "ARMOR",
"name": { "str": "large birchbark quiver" },
"description": "A large quiver woven from strips of birchbark, worn on the back, that can hold 60 arrows. Activate to store arrows.",
"description": "A large quiver woven from strips of birchbark, worn on the back, that can hold 60 arrows or bolts. It can be unloaded or reloaded.",
"weight": "1380 g",
"volume": "1500 ml",
"price": 8800,
Expand All @@ -384,7 +384,7 @@
"coverage": 15,
"encumbrance": 14,
"material_thickness": 1,
"pocket_data": [ { "ammo_restriction": { "arrow": 60, "bolt": 60 }, "moves": 20 } ],
"pocket_data": [ { "pocket_type": "MAGAZINE", "rigid": true, "ammo_restriction": { "arrow": 60, "bolt": 60 }, "moves": 20 } ],
"flags": [ "BELTED", "VARSIZE", "OVERSIZE", "WATER_FRIENDLY" ]
},
{
Expand Down