-
Notifications
You must be signed in to change notification settings - Fork 68
Modonomicon Recipe Pages
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.
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
#
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)
Some recipe pages can also display two recipes in one page, namely:
spirit_instiller_crafting
titration_barrel_fermenting
{
"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"
},
General
For Players
- Getting Started
- Mixing Colors
- Stuck on how to progress?
- Main Progression Steps (MAJOR SPOILERS)
For Server Admins / Modpack Creators
- Integrating into Modpacks
- Adjusting Progression
- Advancement Criteria
- 1.7.x: Patchouli Pages
- 1.7.x: Patchouli Recipe Pages
- 1.8.x: Modonomicon Pages
- 1.8.x: Modonomicon Recipe Pages
- Commands
- Type Specific Predicates
- JsonNBT
For Map Makers
Recipe Types
- Custom Pigment Pedestal Recipes
- Custom Anvil Crushing Recipes
- Custom Fusion Shrine Recipes
- Custom Enchanter Recipes
- Custom Enchantment Upgrade Recipes
- Custom Potion Workshop Brewing Recipes
- Custom Potion Workshop Crafting Recipes
- Custom Potion Workshop Reagents
- Custom Spirit Instiller Recipes
- Custom Liquid Dipping Recipes
- Custom Ink Converting Recipes
- Custom Crystallarieum Recipes
- Custom Cinderhearth Recipes
- Custom Titration Barrel Recipes
- Fluid Ingredients
Loot Tables
More Customisation
- Adding Nature's Staff Conversions
- Adding Entity Fishing Entries
- Adding Resonance Drops
- Adding Crystal Apothecary Harvestables
- Adding Particle Spawner Particles
For Contributors