Integrate stats, resources, and cosmetics into adventures via conditional branches gated by game state checks. Each of the 9 adventures now has a secret branch that rewards exploration and encourages replay with subtle hints on locked choices. The endgame box now triggers a Destiny adventure that acknowledges all completed adventures and secret branches, with four ending tiers culminating in an ultimate ending when all 9 secrets are found. Also adds the crafting engine, CLAUDE.md and specifications.md for faster onboarding.
228 lines
7.3 KiB
JSON
228 lines
7.3 KiB
JSON
[
|
|
{
|
|
"id": "refine_wood",
|
|
"nameKey": "recipe.refine_wood",
|
|
"workstation": "Foundry",
|
|
"ingredients": [
|
|
{"itemDefinitionId": "material_wood_raw", "quantity": 2}
|
|
],
|
|
"result": {"itemDefinitionId": "material_wood_refined", "quantity": 1}
|
|
},
|
|
{
|
|
"id": "smelt_bronze_ingot",
|
|
"nameKey": "recipe.smelt_bronze_ingot",
|
|
"workstation": "Furnace",
|
|
"ingredients": [
|
|
{"itemDefinitionId": "material_bronze_raw", "quantity": 3}
|
|
],
|
|
"result": {"itemDefinitionId": "material_bronze_ingot", "quantity": 1}
|
|
},
|
|
{
|
|
"id": "smelt_iron_ingot",
|
|
"nameKey": "recipe.smelt_iron_ingot",
|
|
"workstation": "Furnace",
|
|
"ingredients": [
|
|
{"itemDefinitionId": "material_iron_raw", "quantity": 3}
|
|
],
|
|
"result": {"itemDefinitionId": "material_iron_ingot", "quantity": 1}
|
|
},
|
|
{
|
|
"id": "smelt_steel_ingot",
|
|
"nameKey": "recipe.smelt_steel_ingot",
|
|
"workstation": "Furnace",
|
|
"ingredients": [
|
|
{"itemDefinitionId": "material_steel_raw", "quantity": 4}
|
|
],
|
|
"result": {"itemDefinitionId": "material_steel_ingot", "quantity": 1}
|
|
},
|
|
{
|
|
"id": "smelt_titanium_ingot",
|
|
"nameKey": "recipe.smelt_titanium_ingot",
|
|
"workstation": "Furnace",
|
|
"ingredients": [
|
|
{"itemDefinitionId": "material_titanium_raw", "quantity": 5}
|
|
],
|
|
"result": {"itemDefinitionId": "material_titanium_ingot", "quantity": 1}
|
|
},
|
|
{
|
|
"id": "forge_carbonfiber_sheet",
|
|
"nameKey": "recipe.forge_carbonfiber_sheet",
|
|
"workstation": "Forge",
|
|
"ingredients": [
|
|
{"itemDefinitionId": "material_carbonfiber_raw", "quantity": 4}
|
|
],
|
|
"result": {"itemDefinitionId": "material_carbonfiber_sheet", "quantity": 1}
|
|
},
|
|
|
|
{
|
|
"id": "brew_health_potion_medium",
|
|
"nameKey": "recipe.brew_health_potion_medium",
|
|
"workstation": "AlchemyTable",
|
|
"ingredients": [
|
|
{"itemDefinitionId": "health_potion_small", "quantity": 3}
|
|
],
|
|
"result": {"itemDefinitionId": "health_potion_medium", "quantity": 1}
|
|
},
|
|
{
|
|
"id": "brew_mana_crystal_medium",
|
|
"nameKey": "recipe.brew_mana_crystal_medium",
|
|
"workstation": "AlchemyTable",
|
|
"ingredients": [
|
|
{"itemDefinitionId": "mana_crystal_small", "quantity": 3}
|
|
],
|
|
"result": {"itemDefinitionId": "mana_crystal_medium", "quantity": 1}
|
|
},
|
|
{
|
|
"id": "synthesize_energy_cell",
|
|
"nameKey": "recipe.synthesize_energy_cell",
|
|
"workstation": "MatterSynthesizer",
|
|
"ingredients": [
|
|
{"itemDefinitionId": "mana_crystal_small", "quantity": 2},
|
|
{"itemDefinitionId": "material_iron_ingot", "quantity": 1}
|
|
],
|
|
"result": {"itemDefinitionId": "energy_cell", "quantity": 1}
|
|
},
|
|
{
|
|
"id": "pressurize_oxygen_tank",
|
|
"nameKey": "recipe.pressurize_oxygen_tank",
|
|
"workstation": "EngineerDesk",
|
|
"ingredients": [
|
|
{"itemDefinitionId": "material_steel_ingot", "quantity": 1},
|
|
{"itemDefinitionId": "energy_cell", "quantity": 1}
|
|
],
|
|
"result": {"itemDefinitionId": "oxygen_tank", "quantity": 2}
|
|
},
|
|
|
|
{
|
|
"id": "craft_pilot_glasses",
|
|
"nameKey": "recipe.craft_pilot_glasses",
|
|
"workstation": "Workbench",
|
|
"ingredients": [
|
|
{"itemDefinitionId": "cosmetic_eyes_sunglasses", "quantity": 1},
|
|
{"itemDefinitionId": "material_bronze_ingot", "quantity": 1},
|
|
{"itemDefinitionId": "tint_silver", "quantity": 1}
|
|
],
|
|
"result": {"itemDefinitionId": "cosmetic_eyes_pilotglasses", "quantity": 1}
|
|
},
|
|
{
|
|
"id": "forge_armored_plate",
|
|
"nameKey": "recipe.forge_armored_plate",
|
|
"workstation": "Forge",
|
|
"ingredients": [
|
|
{"itemDefinitionId": "material_steel_ingot", "quantity": 3},
|
|
{"itemDefinitionId": "material_carbonfiber_sheet", "quantity": 2}
|
|
],
|
|
"result": {"itemDefinitionId": "cosmetic_body_armored", "quantity": 1}
|
|
},
|
|
{
|
|
"id": "engineer_rocket_boots",
|
|
"nameKey": "recipe.engineer_rocket_boots",
|
|
"workstation": "EngineerDesk",
|
|
"ingredients": [
|
|
{"itemDefinitionId": "cosmetic_legs_short", "quantity": 1},
|
|
{"itemDefinitionId": "material_titanium_ingot", "quantity": 1},
|
|
{"itemDefinitionId": "energy_cell", "quantity": 2}
|
|
],
|
|
"result": {"itemDefinitionId": "cosmetic_legs_rocketboots", "quantity": 1}
|
|
},
|
|
|
|
{
|
|
"id": "chart_star_navigation",
|
|
"nameKey": "recipe.chart_star_navigation",
|
|
"workstation": "DrawingTable",
|
|
"ingredients": [
|
|
{"itemDefinitionId": "space_coordinates", "quantity": 1},
|
|
{"itemDefinitionId": "space_map", "quantity": 1}
|
|
],
|
|
"result": {"itemDefinitionId": "space_key", "quantity": 1}
|
|
},
|
|
{
|
|
"id": "engrave_royal_seal",
|
|
"nameKey": "recipe.engrave_royal_seal",
|
|
"workstation": "EngravingBench",
|
|
"ingredients": [
|
|
{"itemDefinitionId": "medieval_crest", "quantity": 1},
|
|
{"itemDefinitionId": "medieval_scroll", "quantity": 1}
|
|
],
|
|
"result": {"itemDefinitionId": "medieval_seal", "quantity": 1}
|
|
},
|
|
{
|
|
"id": "enchant_dark_grimoire",
|
|
"nameKey": "recipe.enchant_dark_grimoire",
|
|
"workstation": "TransformationPentacle",
|
|
"ingredients": [
|
|
{"itemDefinitionId": "darkfantasy_ring", "quantity": 2}
|
|
],
|
|
"result": {"itemDefinitionId": "darkfantasy_grimoire", "quantity": 1}
|
|
},
|
|
{
|
|
"id": "fuse_cosmic_crystal",
|
|
"nameKey": "recipe.fuse_cosmic_crystal",
|
|
"workstation": "MatterSynthesizer",
|
|
"ingredients": [
|
|
{"itemDefinitionId": "cosmic_shard", "quantity": 2}
|
|
],
|
|
"result": {"itemDefinitionId": "cosmic_crystal", "quantity": 1}
|
|
},
|
|
{
|
|
"id": "splice_glowing_dna",
|
|
"nameKey": "recipe.splice_glowing_dna",
|
|
"workstation": "GeneticModStation",
|
|
"ingredients": [
|
|
{"itemDefinitionId": "microscopic_bacteria", "quantity": 1},
|
|
{"itemDefinitionId": "microscopic_prion", "quantity": 1}
|
|
],
|
|
"result": {"itemDefinitionId": "microscopic_dna", "quantity": 1}
|
|
},
|
|
{
|
|
"id": "preserve_amber",
|
|
"nameKey": "recipe.preserve_amber",
|
|
"workstation": "StasisChamber",
|
|
"ingredients": [
|
|
{"itemDefinitionId": "prehistoric_tooth", "quantity": 2}
|
|
],
|
|
"result": {"itemDefinitionId": "prehistoric_amber", "quantity": 1}
|
|
},
|
|
|
|
{
|
|
"id": "craft_box_ok_tier",
|
|
"nameKey": "recipe.craft_box_ok_tier",
|
|
"workstation": "Workbench",
|
|
"ingredients": [
|
|
{"itemDefinitionId": "material_wood_refined", "quantity": 2},
|
|
{"itemDefinitionId": "material_bronze_ingot", "quantity": 1}
|
|
],
|
|
"result": {"itemDefinitionId": "box_ok_tier", "quantity": 1}
|
|
},
|
|
{
|
|
"id": "craft_box_cool",
|
|
"nameKey": "recipe.craft_box_cool",
|
|
"workstation": "Forge",
|
|
"ingredients": [
|
|
{"itemDefinitionId": "material_steel_ingot", "quantity": 2},
|
|
{"itemDefinitionId": "tint_neon", "quantity": 1}
|
|
],
|
|
"result": {"itemDefinitionId": "box_cool", "quantity": 1}
|
|
},
|
|
{
|
|
"id": "craft_box_supply",
|
|
"nameKey": "recipe.craft_box_supply",
|
|
"workstation": "Workbench",
|
|
"ingredients": [
|
|
{"itemDefinitionId": "material_wood_raw", "quantity": 2},
|
|
{"itemDefinitionId": "food_ration", "quantity": 2}
|
|
],
|
|
"result": {"itemDefinitionId": "box_supply", "quantity": 1}
|
|
},
|
|
{
|
|
"id": "craft_box_epic",
|
|
"nameKey": "recipe.craft_box_epic",
|
|
"workstation": "Printer3D",
|
|
"ingredients": [
|
|
{"itemDefinitionId": "material_titanium_ingot", "quantity": 2},
|
|
{"itemDefinitionId": "material_carbonfiber_sheet", "quantity": 1},
|
|
{"itemDefinitionId": "tint_gold", "quantity": 1}
|
|
],
|
|
"result": {"itemDefinitionId": "box_epic", "quantity": 1}
|
|
}
|
|
]
|