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

Add pronoun/pride pins #79572

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion data/json/itemgroups/Clothing_Gear/clothing.json
Original file line number Diff line number Diff line change
Expand Up @@ -4510,7 +4510,8 @@
{ "item": "national_flag", "prob": 1 },
{ "item": "state_flag", "prob": 1 },
{ "item": "tool_belt", "prob": 2 },
{ "group": "flask_liquor", "prob": 3 }
{ "group": "flask_liquor", "prob": 3 },
{ "item": "pin_badge", "prob": 6 }
]
},
{
Expand Down
130 changes: 130 additions & 0 deletions data/json/items/armor/jewelry.json
Original file line number Diff line number Diff line change
Expand Up @@ -2031,6 +2031,136 @@
"volume": "50 ml",
"description": "A star-shaped plastic badge. \"Foodkid\" is printed on it in bold letters. This badge marks its wearer as Foodperson's trusty sidekick, and comes included with every kid's meal at Foodplace."
},
{
"id": "pin_badge",
"copy-from": "badge_abstract",
"type": "ARMOR",
"name": { "str": "pin" },
"material": [ "steel" ],
"price": "5 USD",
"price_postapoc": "10 cent",
"weight": "4 g",
"volume": "10 ml",
"//": "Measured my own pin. Hopefully the NB ones are universal.",
"description": "A small piece of metal with a pin, meant to affix itself to an article of clothing. It's mainly used on jackets or backpacks, as a way to show off what bands you listen to, or other things like your pronouns.",
"variant_type": "generic",
"variants": [
{
"id": "pin_pronoun_nb",
"name": { "str": "pronoun pin (they/them)", "str_pl": "pronoun pins (they/them)" },
"description": "This one has the pronouns \"they/them\" on it.",
"append": true
},
{
"id": "pin_pronoun_fem",
"name": { "str": "pronoun pin (she/her)", "str_pl": "pronoun pins (she/her)" },
"description": "This one has the pronouns \"she/her\" on it.",
"append": true
},
{
"id": "pin_pronoun_masc",
"name": { "str": "pronoun pin (he/him)", "str_pl": "pronoun pins (he/him)" },
"description": "This one has the pronouns \"he/him\" on it.",
"append": true
},
{
"id": "pin_pronoun_it",
"name": { "str": "pronoun pin (it/its)", "str_pl": "pronoun pins (it/its)" },
"description": "This one has the pronouns \"it/its\" on it.",
"append": true
},
{
"id": "pin_pride",
"name": { "str": "pride pin" },
"description": "This one has the pride flag on it.",
"append": true
},
{
"id": "pin_pride_progress",
"name": { "str": "progress pride pin" },
"description": "This one has the pride flag on it.",
"append": true
},
{
"id": "pin_pride_bi",
"name": { "str": "pride pin, bisexual", "str_pl": "pride pins, bisexual" },
"description": "This one has the bisexual pride flag on it.",
"append": true
},
{
"id": "pin_pride_pan",
"name": { "str": "pride pin, pansexual", "str_pl": "pride pins, pansexual" },
"description": "This one has the pansexual pride flag on it.",
"append": true
},
{
"id": "pin_pride_ace",
"name": { "str": "pride pin, asexual", "str_pl": "pride pins, asexual" },
"description": "This one has the asexual pride flag on it.",
"append": true
},
{
"id": "pin_pride_aro",
"name": { "str": "pride pin, aromantic", "str_pl": "pride pins, aromantic" },
"description": "This one has the aromantic pride flag on it.",
"append": true
},
{
"id": "pin_pride_wlw",
"name": { "str": "pride pin, lesbian", "str_pl": "pride pins, lesbian" },
"description": "This one has the lesbian pride flag on it.",
"append": true
},
{
"id": "pin_pride_labrys",
"name": { "str": "pride pin, labrys lesbian", "str_pl": "pride pins, labrys lesbian" },
"description": "This one has the labrys lesbian pride flag on it.",
"append": true
},
{
"id": "pin_pride_poly",
"name": { "str": "pride pin, polysexual", "str_pl": "pride pins, polysexual" },
"description": "This one has the polysexual pride flag on it.",
"append": true
},
{
"id": "pin_pride_trans",
"name": { "str": "pride pin, transgender", "str_pl": "pride pins, transgender" },
"description": "This one has the transgender pride flag on it.",
"append": true
},
{
"id": "pin_pride_nb",
"name": { "str": "pride pin, non-binary", "str_pl": "pride pins, non-binary" },
"description": "This one has the non-binary pride flag on it.",
"append": true
},
{
"id": "pin_pride_agender",
"name": { "str": "pride pin, agender", "str_pl": "pride pins, agender" },
"description": "This one has the agender pride flag on it.",
"append": true
},
{
"id": "pin_pride_gender",
"name": { "str": "pride pin, genderqueer", "str_pl": "pride pins, genderqueer" },
"description": "This one has the genderqueer pride flag on it.",
"append": true
},
{
"id": "pin_pride_genderfluid",
"name": { "str": "pride pin, genderfluid", "str_pl": "pride pins, genderfluid" },
"description": "This one has the genderfluid pride flag on it.",
"append": true
},
{
"id": "pin_pride_intersex",
"name": { "str": "pride pin, intersex", "str_pl": "pride pins, intersex" },
"description": "This one has the intersex pride flag on it.",
"append": true
}
]
},
{
"id": "fur_cat_ears",
"type": "ARMOR",
Expand Down
Loading