Synthesis Recipes Data

Don't confuse this with the recipe folder

data/kingdomkeys/recipe/ is vanilla Minecraft's crafting recipe registry (ordinary crafting table recipes) and is unrelated to this system. Moogle Shop synthesis recipes (this) actually live in the synthesis folder instead. Keyblade forge upgrade recipes are a separate system too, see Keyblades.

Synthesis recipe data (for armor, accessories and items bought/synthesised at a Moogle) is in the synthesis folder, here is the JSON file structure:

Example: abaddon_plasma.json

{
  "cost": 0,
  "ingredients": [
    { "material": "kingdomkeys:soothing_gem", "quantity": "2" },
    { "material": "kingdomkeys:soothing_crystal", "quantity": "3" },
    { "material": "kingdomkeys:writhing_stone", "quantity": "4" }
  ],
  "output": {
    "type": "keyblade",
    "item": "kingdomkeys:abaddon_plasma_chain",
    "quantity": 1
  },
  "tier": 4
}