Skip to content

Modonomicon Recipe Pages

DaFuqs edited this page Nov 8, 2024 · 4 revisions

Spectrum's guidebook "Colorful World" is powered by Patchouli, an extensible guidebook API.

Spectrum adds new page types where necessary. All available new recipe page types provided by Spectrum are listed on this page, available to be used by modpacks and all addons for Spectrum that want to add content to Spectrum's guidebook, or provide their own.

Available Page Types

Recipe page types:

  • spectrum:anvil_crushing
  • spectrum:cinderhearth_smelting
  • spectrum:crystallarieum_growing
  • spectrum:dragonrot_converting
  • spectrum:enchanter_crafting
  • spectrum:enchanter_upgrading
  • spectrum:fusion_shrine_crafting
  • spectrum:liquid_crystal_converting
  • spectrum:midnight_solution_converting
  • spectrum:mud_converting
  • spectrum:pedestal_crafting
  • spectrum:potion_workshop_brewing
  • spectrum:potion_workshop_crafting
  • spectrum:primordial_fire_burning
  • spectrum:spirit_instiller_crafting
  • spectrum:titration_barrel_fermenting

Item Crushing Page#

They all follow the same format:

{
  "type": "spectrum:anvil_crushing",
  "title": "book.spectrum.guidebook.titration_barrel.demo.title",
  "recipe": "spectrum:anvil_crushing/fiery_powder_from_blazing_crystal",
  "text": "book.spectrum.guidebook.titration_barrel.demo.text"
},

By default recipe pages are automatically hidden unless the player has the unlock advancement set for that recipe. You can skip that advancement check by adding "skip_recipe_unlock_check": true to make the page always render (the other unlock conditions still apply)

Double Pages

Some recipe pages can also display two recipes in one page, namely:

  • spirit_instiller_crafting
  • titration_barrel_fermenting

Titration Page

{
  "type": "spectrum:titration_barrel_fermenting",
  "title": "item.spectrum.clotted_cream",
  "recipe_id": "spectrum:titration_barrel/clotted_cream",
  "title2": "item.spectrum.clotted_cream.fluid",
  "recipe_id2": "spectrum:titration_barrel/clotted_cream_fluid",
  "text": "book.spectrum.guidebook.titration_barrel.page4.text"
},
Clone this wiki locally