Infusions119 - Mowmaster/Pedestals GitHub Wiki

Infusions have quite a few options and can be added to Upgrades to provide additional functionality

Full List of Infusions nbt tag names

upgradespeed
upgradedamagecapacity
upgradeblockcapacity
upgradeitemcapacity
upgradefluidcapacity
upgradeenergycapacity
upgradexpcapacity
upgradedustcapacity
upgradearea
upgraderange
upgrademagnet
upgradegentle
upgradesuperspeed
upgradeentitystorage
upgraderemotestorage
upgradeoperatetobedrock
upgraderemovedurabilitycost
upgraderepairtool

Remove Durability Cost

  • Can be used when the config to require tool durability is set to true
  • pack dev will need to add a recipe, the nbt tag for this is upgraderemovedurabilitycost with a max value needed of 1 to activate its full effects
    • this will remove the need for durability on tools when it operates (this doesnt mean that a pedestal will work with a broken tool (durability of 1))

Auto Repair

  • Can be used when the config to require tool durability is set to true
  • pack dev will need to add a recipe, the nbt tag for this is upgraderepairtool with a max value needed of 1 to activate its full effects
    • this will use stored XP in a pedestal to repair the inserted tool every operation
    • there is an additional GLOBAL config to set the rate of XP consumed per durability repaired.

example recipe code

{
  "type": "pedestals:upgrademodification_global",

  "ingredients": [
    {
      "item": "pedestals:upgrade_pedestal_breaker"
    },
    {
      "tag": "forge:ingots/gold"
    },
    {
      "item": "minecraft:crying_obsidian"
    }
  ],
  "resultModificationName": "upgraderemovedurabilitycost",
  "resultModificationValue": 1,
  "resultModificationMaxValue": 1
}