-
Notifications
You must be signed in to change notification settings - Fork 68
Custom Ink Converting Recipes
DaFuqs edited this page Nov 5, 2024
·
7 revisions
At the start of Midgame, the player gets introduced to Spectrums energy system, Ink. Ink comes in all 16 Minecraft colors and is used to power most of Spectrums tools and apparati. Converting items to Ink is done in the Color Picker.
Entry | Type | Default | Description |
---|---|---|---|
group | string | empty | A string that represents a recipe group. Recipes with a common group will only trigger a single unlock popup, if multiple are unlocked at once. Add a localization string "recipeGroup.spectrum.<<your_group_string>>" so the toast popup is properly localized |
secret | boolean | false | If true, the recipe will never be listed in recipe listing mods, like REI |
required_advancement | advancement_identifier | empty | The advancement a player needs to have to be able to see this recipe. Spectrum will automatically show a toast to the player when this advancement has been unlocked and reached the set tier |
ingredient | ingredient | The ingredient that gets converted into Ink | |
color | color identifier | The color of Ink that get's produced (the 16 minecraft colors ship with base spectrum) | |
amount | long | The amount of Ink to generate |
Pigment always generates 100 Ink per item, vanilla Dyes 5.
{
"type": "spectrum:ink_converting",
"ingredient": {
"item": "spectrum:cyan_pigment"
},
"color": "spectrum:cyan",
"amount": 100,
"required_advancement": "spectrum:hidden/collect_pigment/collect_cyan_pigment"
}
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