Skip to content

Custom Ink Converting Recipes

DaFuqs edited this page Jun 7, 2022 · 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.

Ink Converting

Properties

  • "group" (string, optional): A string that represents a recipe group. Recipes that have a group set will only trigger a single unlocking toast. Add a localization string "recipeGroup.spectrum.<<your_group_string>>" so the toast popup is properly localized.
  • "ingredient" (ingredient): The ingredient that gets converted into Ink
  • "color" (string): The color of Ink that get's produced (One of the 16 minecraft colors)
  • "amount" (long): The amount of Ink to generate
  • "required_advancement" (advancement identifier, optional): The advancement a player must have to be able to craft his recipe. Spectrum will automatically show a toast to the player when this advancement has been unlocked

Example: Creating Cyan Ink from Pigment

Pigment always generates 100 Ink per item, vanilla Dyes 5.

{
  "type": "spectrum:ink_converting",
  "ingredient": {
    "item": "spectrum:cyan_pigment"
  },
  "color": "cyan",
  "amount": 100,
  "required_advancement": "spectrum:hidden/collect_pigment/collect_cyan_pigment"
}
Clone this wiki locally