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

feat(content): fruit products (jam, juice, cooked) will inherit name from component used #4737

Merged
merged 9 commits into from
Jun 4, 2024
28 changes: 28 additions & 0 deletions data/json/items/comestibles/junkfood.json
Original file line number Diff line number Diff line change
Expand Up @@ -360,6 +360,34 @@
"type": "COMESTIBLE",
"id": "cookies",
"name": "cookie",
"conditional_names": [
Lamandus marked this conversation as resolved.
Show resolved Hide resolved
{ "type": "COMPONENT_ID", "condition": "apple", "name":"apple %s" },
{ "type": "COMPONENT_ID", "condition": "apricot", "name":"apricot %s" },
{ "type": "COMPONENT_ID", "condition": "banana", "name":"banana %s" },
{ "type": "COMPONENT_ID", "condition": "blackberries", "name":"blackberry %s" },
{ "type": "COMPONENT_ID", "condition": "blueberries", "name":"blueberry %s" },
{ "type": "COMPONENT_ID", "condition": "cherries", "name":"cherry %s" },
{ "type": "COMPONENT_ID", "condition": "cranberries", "name":"cranberry %s" },
{ "type": "COMPONENT_ID", "condition": "grapefruit", "name":"grapefruit %s" },
{ "type": "COMPONENT_ID", "condition": "grapes", "name":"grape %s" },
{ "type": "COMPONENT_ID", "condition": "kiwi", "name":"kiwi %s" },
{ "type": "COMPONENT_ID", "condition": "mango", "name":"mango %s" },
{ "type": "COMPONENT_ID", "condition": "melon", "name":"melon %s" },
{ "type": "COMPONENT_ID", "condition": "orange", "name":"orange %s" },
{ "type": "COMPONENT_ID", "condition": "papaya", "name":"papaya %s" },
{ "type": "COMPONENT_ID", "condition": "peach", "name":"peach %s" },
{ "type": "COMPONENT_ID", "condition": "pear", "name":"pear %s" },
{ "type": "COMPONENT_ID", "condition": "pineapple", "name":"pineapple %s" },
{ "type": "COMPONENT_ID", "condition": "plums", "name":"plum %s" },
{ "type": "COMPONENT_ID", "condition": "pomegranate", "name":"pomegranate %s" },
{ "type": "COMPONENT_ID", "condition": "raspberries", "name":"raspberry %s" },
{ "type": "COMPONENT_ID", "condition": "rose_hips", "name":"rose_hip %s" },
{ "type": "COMPONENT_ID", "condition": "strawberries", "name":"strawberry %s" },
{ "type": "COMPONENT_ID", "condition": "huckleberries", "name":"huckleberry %s" },
{ "type": "COMPONENT_ID", "condition": "mulberries", "name":"mulberry %s" },
{ "type": "COMPONENT_ID", "condition": "elderberries", "name":"elderberry %s" },
{ "type": "COMPONENT_ID", "condition": "watermelon", "name":"watermelon %s" }
],
"weight": "33 g",
"color": "brown",
"container": "box_small",
Expand Down
Loading