Still getting the “not in manifest” error after making all instances of stone_bunny into stonebunny;
Manifest:
{
"info": { "name": "Stonebunny", "version": 1 },
"aliases": { "stonebunny": "file(entities/furniture/stonebunny)" },
"mixintos": { "stonehearth/jobs/mason/recipes/recipes.json": ["file(mixins/mason_recipes.json)"] }
}
Recipe: (stonebunny_recipe):
{
"type":"recipe",
"work_units" : 8,
"recipe_name" : "Bunny Monument",
"description" : "A replica of the ancient monument to the gods.",
"flavor" : "Carrot offerings are recommended",
"portrait" : "/stonebunny/entities/statue/stonebunny/stonebunny.png",
"level_requirement" : 4,
"workshop": "stonehearth:mason:pedestal",
"ingredients": [
{
"material" : "stone resource",
"count" : 8
}
],
"produces": [
{
"item":"stonebunny:stonebunny"
}
]
}
mason_recipes (mixins):
{
"craftable_recipes": {
"statues": {
"ordinal": 8,
"name": "Monuments",
"recipes": {
"stone_bunny": {
"recipe": "file(../recipes/stonebunny_recipe.json)"
}
}
}
}
}
stonebunny.json (in entities/furniture/stonebunny):
{
"mixins" : "file(stonebunny_ghost.json)",
"components": {
"stonehearth:entity_forms" : {
"iconic_form" : "file(stonebunny_iconic.json)",
"ghost_form" : "file(stonebunny_ghost.json)",
"placeable_on_ground" : true
},
"region_collision_shape" : {
"region": [
{
"min" : { "x" : -0.75, "y" : 0, "z" : -0.75 },
"max" : { "x" : 1.75, "y" : 3, "z" : 1.75 }
}
]
}
},
"entity_data" : {
"stonehearth:net_worth" : {
"value_in_gold" : 250,
"rarity" : "common",
"shop_info" : {
"buyable" : true,
"sellable" : true,
"shopkeeper_level" : 2,
"shopkeeper_type" : "caravan"
}
}
}
}
stonebunny_ghost:
{
"components": {
"model_variants": {
"default": {
"models": [
"file(stonebunny.qb)"
]
}
},
"unit_info": {
"name": "Stone bunny",
"description": "Culture ensribed into stone",
"icon" : "file(stonebunny.png)"
},
"stonehearth:material" : {
"tags" : "stone furniture crafted"
},
"mob" : {
"model_origin" : { "x": -0.05, "y": 0, "z": 0.05 },
"region_origin" : { "x": 0.5, "y": 0, "z": 0.5 }
}
}
}
stonebunny_iconic:
{
"mixins": "stonehearth:mixins:item_properties",
"type": "entity",
"components": {
"item" : {
"category" : "decoration"
},
"model_variants": {
"default": {
"models": [
"file(stonebunny_iconic.qb)"
]
}
},
"mob" : {
"model_origin" : { "x": -0.05, "y": 0, "z": 0.05 }
}
}
}
I just wanted one easy little mod to get my failure schism to shut up!