-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Variant Undies: Boxer Briefs and Boxer Shorts (#74257)
* VariantsForboxers * Update recipes to prevent id errors * New File for Clothing Snippets Not a great place to put these sort of snippets and most of the others are organized into their own files (IE: Child notes v home photos v EOC etc.) and Karol advised I just make a new file for clothing snippets * Did I Lint? * visions of money * Update data/json/snippets/clothing.json Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Update data/json/snippets/clothing.json Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Update data/json/snippets/clothing.json Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Update data/json/snippets/clothing.json Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * Fix broken plurals, man I messed up a lot this PR * Just... sigh --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
- Loading branch information
1 parent
65c1f96
commit e597583
Showing
3 changed files
with
123 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
[ | ||
{ | ||
"type": "snippet", | ||
"category": "<day>", | ||
"//": "This is a snippet category originally made for undergarments, containing the days of the week.", | ||
"text": [ | ||
{ "id": "monday", "text": "Monday" }, | ||
{ "id": "tuesday", "text": "Tuesday" }, | ||
{ "id": "wednesday", "text": "Wednesday" }, | ||
{ "id": "thursday", "text": "Thursday" }, | ||
{ "id": "friday", "text": "Friday" }, | ||
{ "id": "saturday", "text": "Saturday" }, | ||
{ "id": "sunday", "text": "Sunday" } | ||
] | ||
}, | ||
{ | ||
"type": "snippet", | ||
"category": "<animals>", | ||
"//": "This category was originally made for underwear, so should be appropriate animals that appear on boxers, for example. Should be plural.", | ||
"text": [ | ||
{ "id": "dolphins", "text": "dolphins" }, | ||
{ "id": "chickens", "text": "chickens" }, | ||
{ "id": "cows", "text": "cows" }, | ||
{ "id": "horses", "text": "horses" }, | ||
{ "id": "kittens", "text": "kittens" }, | ||
{ "id": "mice", "text": "mice" }, | ||
{ "id": "puppies", "text": "puppies" } | ||
] | ||
} | ||
] |