Where can I find the item names so i can make the recipe for the food?
Also does this look right?
{
“type” : “recipe”,
“work_units” : 1,
“recipe_name” : “MRE Recipe”,
“description” : “DELICIOUS!”,
“flavor” : “Flavorful!”,
“portrait” : “/MRE/entities/MRE/MRE.png”,
“level_requirement” : 0,
“ingredients”: [
{
“material” : “food meat raw”,
“count” : 1
}
],
“produces”: [
{
“item”:“mre”
}
]
}
andddd I cannot start my game ):
I got it running now
The mod didn’t work ): Also since my stonehearth.smod was technically still a compressed file it did not work even with .smod at the end so how do I make my mod an smod because adding .smod does not seem to work.
you need to turn on file extensions in order to be able to change a .zip into .smod,
Displaying the File Extension in Windows Vista and Windows 7
-
Click the Start menu. ...
-
Type "folder options" (without the quotes). ...
-
A dialog box with the title "Folder Options" will appear. ...
-
Click to uncheck the box for "Hide extensions for known file types".
-
Click the "OK" button at the bottom of the dialog box.
hope that helps
I have windows 8 but I did it through CMD and its fine but the mod doesn’t work the item won’t show up. ): I am going to try again later but could you look at it and tell me what I did wrong?MRE.smod.zip (3.6 KB)
I cannot upload the smod but I can upload the attempt
sooo first your recipe is incorrect:
“food”: {
“ordinal”: 2,
“name”: “i18n(stonehearth:jobs.cook.recipes.food_name)”,
“recipes”: {
“MRE”: {
“recipe”: “file(mre_recipe.json)”
}
}
}
}
}
… thats not a recipe this is the recipe.json …
you need something like:
{
“type”:“recipe”,
“work_units” : 1,
“recipe_name” : “i18n(cookmod:jobs.cook.recipes.berry_juice_recipe.recipe_name)”,
“description” : “i18n(cookmod:jobs.cook.recipes.berry_juice_recipe.description)”,
“flavor” : “i18n(cookmod:jobs.cook.recipes.berry_juice_recipe.flavor)”,
“portrait” : “/cookmod/entities/food/berry_juice/berry_juice/berry_juice_recipe.png”,
“level_requirement” : 0,
“ingredients”: [
{
“uri” : “stonehearth:food:berries:berry_basket”,
“count” : 2
}
],
“produces”: [
{
“item” : “cookmod:cooking:berry_juice”
}
]
}
ok your qb file was also false exported ^^
also dont use big letters expect for the name, descriptions and flavor in the jsonfile ^^
here now the repaired smod Dropbox - Link not found