-
Notifications
You must be signed in to change notification settings - Fork 4.3k
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
Add gun-mounted ammo holders #70858
Add gun-mounted ammo holders #70858
Changes from 5 commits
b20f47d
bfefc82
0ba3e52
a475d40
be1d540
9a82599
3c3db8e
bcb0142
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -132,5 +132,33 @@ | |||||
"location": "belt clip", | ||||||
"mod_targets": [ "rugerlcp", "kp32", "kp3at", "kpf9", "cop_38", "moss_brownie" ], | ||||||
"flags": [ "IS_ARMOR", "SKINTIGHT", "WATER_FRIENDLY" ] | ||||||
}, | ||||||
{ | ||||||
"id": "12_gauge_shell_holder", | ||||||
"type": "GUNMOD", | ||||||
"name": { "str": "12 gauge shell holder" }, | ||||||
"description": "Designed to be affixed to the side of a shotgun's receiver, this polymer shotshell holder can store six 12 gauge shells for easy reloading.", | ||||||
"weight": "16 g", | ||||||
"volume": "60 ml", | ||||||
"price": 2000, | ||||||
"price_postapoc": 50, | ||||||
"install_time": "30 s", | ||||||
"material": [ "plastic" ], | ||||||
"flags": [ "NOT_MAGAZINE", "TARDIS" ], | ||||||
"symbol": ":", | ||||||
"color": "black", | ||||||
"location": "loading port", | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
Stock-mounted versions also exist https://www.midwayusa.com/product/1014560565?pid=668092 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Isn't the rail on the top of the gun? It wouldn't go up there. Stock mounted versions are planned. This is a draft. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The "rail" rail is on the side. It's where non-underbarrel laser sights go. (There are also underbarrel and top rails, which are referred to in-game as "underbarrel" and "sights" locations.) On pump-action (and modern automatic) shotguns, the side rail would likely be on the forend (the thing you "pump" after each shot, the thing that goes chuck-chuck). This isn't an adequate position for a shell holder, since a filled holder would interfere with one's ability to grip the forend. See this replacement forend with an underbarrel rail and two side rails: https://trinitysupply.com/cdn/shop/files/2_042cc13a-522b-42f6-9c74-c1022d30baed.jpg But since we don't have a "body" location or something, rails would do. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. They don't necessarily go over the top. Looks like they're mostly held by the pins(?) on the shotgun's body, as can be seen in the (poor-quality, but legible) instructions on this product: https://www.amazon.com/TacStar-6-Shot-Sidesaddle-Black/dp/B001AMZXQI Which, again, might require a special slot on shotguns, which may or may not be beyond this PR's scope. |
||||||
"mod_targets": [ "shotgun" ], | ||||||
"pocket_mods": [ | ||||||
{ | ||||||
"pocket_type": "CONTAINER", | ||||||
"rigid": true, | ||||||
"max_contains_volume": "120 ml", | ||||||
"max_contains_weight": "300 g", | ||||||
"ammo_restriction": { "shot": 6 }, | ||||||
"moves": 25 | ||||||
} | ||||||
], | ||||||
"min_skills": [ [ "weapon", 1 ] ] | ||||||
} | ||||||
] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why does this need TARDIS flag, a magazine well that covers the volume of the shotshell that isn't poking out should suffice 🤔
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah, either the pocket is rigid and takes up the full space even without contents or it's not rigid and every loaded shell increases the size accordingly. From the images I'd expect the latter.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It doesn't. I had it on there while trying to figure out a way to keep the shells from falling out when a full holder was removed, but it didn't work and I haven't gotten around to fixing it. Note that this PR is marked draft and is not ready for review.