Skip to content

Patchouli Recipe Pages

DaFuqs edited this page Aug 18, 2024 · 10 revisions

Spectrum's guidebook "Colorful World" is powered by Patchouli, an extensible guidebook API. Spectrum adds new page types everywhere 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.

Anvil Crushing

Renders a single Anvil Crushing recipe on the page. Also has room for accompanying description text.

Anvil Crushing Recipes

Example

{
  "type": "spectrum:anvil_crushing",
  "advancement": "spectrum:hidden/collect_blazing_crystal",
  "recipe": "spectrum:anvil_crushing/fiery_powder_from_blazing_crystal",
  "text": "Crushing $(thing)Blazing Crystal$() with an Anvil yields this burning hot powder."
},

Pigment Pedestal

Renders a single Pigment Pedestal recipe on the page. Also has room for accompanying description text.

Pedestal Recipes

Example

{
  "type": "spectrum:pedestal_crafting",
  "title": "Pedestal Recipe",
  "recipe": "spectrum:pedestal/tier2/ender_hopper",
  "text": "Description Text"
}

Fusion Shrine

Renders a single Fusion Shrine recipe on the page. Also has room for accompanying description text.

Fusion Shrine Recipes

Example

{
  "type": "spectrum:fusion_shrine_crafting",
  "title": "Fusion Recipe",
  "recipe": "spectrum:fusion_shrine/onyx_shard",
  "text": "Description Text"
}

Enchanter Crafting

Renders a single Enchanter Crafting recipe on the page. Also has room for accompanying description text.

Enchanter Crafting Recipes

Example

{
  "type": "spectrum:enchanter_crafting",
  "title": "Enchanter Recipe",
  "recipe": "spectrum:enchanter/vanilla/protection",
  "text": "Description Text"
}

Enchantment Upgrade

Renders a single Enchantment Upgrade recipe on the page. Also has room for accompanying description text.

Enchantment Upgrade Recipes

Example

{
  "type": "spectrum:enchanter_upgrading",
  "title": "Enchantment Upgrading",
  "recipe": "spectrum:enchantment_upgrade/vanilla/protection",
  "text": "Description Text"
}

Potion Workshop Brewing / Crafting

Renders a single Potion Workshop recipe on the page. Depending on the type used, searches for brewing or crafting recipes. Also has room for accompanying description text.

Potion Workshop Recipes

Brewing Example

{
  "type": "spectrum:potion_workshop_brewing",
  "title": "Absorption",
  "recipe": "spectrum:potion_workshop_brewing/absorption",
  "text": ""
}

Crafting Example

{
  "type": "spectrum:potion_workshop_crafting",
  "title": "Lava",
  "recipe": "spectrum:potion_workshop_crafting/lava_bucket",
  "text": "The $(l:magical_blocks/lava_sponge)Lava Sponge$(/l) will not get used up, allowing you to create large amounts of Lava quickly."
}

Spirit Instilling

Renders a single Spirit Instilling tecipe on the page. Also has room for accompanying description text.

Spirit Instiller Recipes

Example

{
  "type": "spectrum:spirit_instiller_crafting",
  "title": "Activation Range",
  "recipe": "spectrum:spirit_instiller/spawner/spawner_required_player_range_change",
  "text": "Increases the range you can stand for the spawner to still spawn creatures."
}

Midnight Dipping

Renders a single Midnight Dipping recipe on the page. Also has room for accompanying description text.

Midnight Dipping Recipes

Example

{
  "type": "spectrum:midnight_solution_converting",
  "title": "Item Conversion",
  "recipe": "spectrum:midnight_solution_converting/blackstone",
  "text": "Throwing some items into the liquid seems to corrupt them up to a point they turn into something else entirely."
}

Titration Barrel

Renders one or two Titration Barrel recipes on the page. Also has room for accompanying description text.

Titration Barrel Recipes

Example

{
  "type": "spectrum:titration_barrel_fermenting",
  "title": "Recipes for you",
  "recipe": "spectrum:titration_barrel/infused_beverages/golden_apple_cider",
  "recipe2": "spectrum:titration_barrel/infused_beverages/enchanted_apple_cider",
  "text": "A handy description"
}

TODO

  • spectrum:cinderhearth_smelting
  • spectrum:crystallarieum_growing
  • spectrum:dragonrot_converting
  • spectrum:liquid_crystal_converting
  • spectrum:midnight_solution_converting
  • spectrum:mud_converting
  • spectrum:primordial_fire_burning
Clone this wiki locally