-
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
RPG dice #31031
RPG dice #31031
Changes from 3 commits
200a19f
89775d3
22b056b
f6e41ba
1fa951f
6de8c38
d248b28
c0bce1a
90bb809
e8b0754
a8ad9a9
3dd089f
8e689b6
41ae7cc
c0f1b0a
f740088
620a6ee
a86f51a
8cddb74
37e1170
2dad012
c615ae3
3dbba16
5c942e2
4e270c2
5c2ea2a
1b4eea8
e5453a4
d9d94f4
a5c7da4
3d86d76
cb48100
a8a876b
0f77bd9
395c15e
bc66146
c686951
4d84415
eccbd84
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 | ||||
---|---|---|---|---|---|---|
|
@@ -1327,5 +1327,26 @@ | |||||
"count": 50, | ||||||
"ammo_type": "tinder", | ||||||
"effects": [ "NEVER_MISFIRES" ] | ||||||
}, | ||||||
{ | ||||||
"type": "AMMO", | ||||||
"id": "rpg_dice", | ||||||
"price": 10, | ||||||
"name": "rpg dice", | ||||||
"name_plural": "rpg dice", | ||||||
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. Here and above, "RPG" should be all caps |
||||||
"symbol": "=", | ||||||
"color": "light_gray", | ||||||
"looks_like": "marble", | ||||||
"description": "Some dice used to play various role playing games, coming in several shapes and sizes", | ||||||
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 description should be for that of a singular die (rather than "some dice"). Also, "role-playing" is hyphenated Eg
Suggested change
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's no reason the item can't depict a set of dice. A deck of cards is a single item, not 52 individual playing cards. 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. Per the PR:
It probably makes more sense to be shooting individual die, no? |
||||||
"material": "plastic", | ||||||
"volume": 1, | ||||||
"weight": 1, | ||||||
"ammo_type": "pebble", | ||||||
"damage": 1, | ||||||
"range": 20, | ||||||
"dispersion": 15, | ||||||
"loudness": 0, | ||||||
"count": 7, | ||||||
"effects": [ "NEVER_MISFIRES" ] | ||||||
} | ||||||
] |
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -3582,7 +3582,7 @@ | |||||
"skills": [ { "level": 2, "name": "speech" }, { "level": 1, "name": "survival" } ], | ||||||
"items": { | ||||||
"both": { | ||||||
"items": [ "jeans", "tshirt", "socks", "sneakers", "mbag", "pizza_cheese", "cola", "dnd_handbook", "wristwatch" ], | ||||||
"items": [ "jeans", "tshirt", "socks", "sneakers", "mbag", "pizza_cheese", "cola", "dnd_handbook", "wristwatch", "rpg_dice" ], | ||||||
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
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. thank you when changing the ID I forgot about that. |
||||||
"entries": [ { "group": "charged_cell_phone" } ] | ||||||
}, | ||||||
"male": [ "briefs" ], | ||||||
|
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.
You need a
"name_plural"
, or else multiples will show up asx rpg dices
.(The plural name should be the same, because it's already plural)
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.
okay so (I really don't know how this works) should I end this one and make a new one with that in?
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.
No, you make the change, commit it, and push it to this branch.
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.
also, the singular is "die"