klikli-dev / occultism

A magic mod inspired by the world of Jonathan Stroud's Bartimaeus. With the help of occult rituals players can summon entities from the "Other Side" to perform magic.
https://www.curseforge.com/minecraft/mc-mods/occultism
MIT License
67 stars 43 forks source link

Tweaking the Demon Dream Essence recipe for better QoL #1133

Closed ffuentesm closed 2 weeks ago

ffuentesm commented 2 weeks ago

Is your feature request related to a problem? Please describe. Fuse both fruit and seed recipes for the dream essence image

Describe the solution you'd like This is the code for the new QoL recipe, you can make a list instead of two different recipes now in code.

{
  "type": "minecraft:crafting_shaped",
  "category": "misc",
  "pattern": [
    "ppp",
    "ppp",
    "ppp"
  ],
  "key": {
    "p": [
      {
        "tag": "c:crops/datura"
      },
      {
        "tag": "c:seeds/datura"
      }
    ]
  },
  "result": {
    "id": "occultism:demons_dream_essence",
    "count": 1
  }
}

Additional context This way you do not need to wait to grow more fruit if you are just one or two items shy from crafting. You can now use your surplus interchangeably. So is either this or a fruit-to-seed recipe to convert your fruit surplus into seeds.

klikli-dev commented 2 weeks ago

Oh that is a beautiful solution, thank you! Will add that ASAP