promotional bannermobile promotional banner

JSON Recipe Edit

Modpack tool to edit recipes and other pack functions

File Details

jsonRecipeEdit-1.11.2-0.7.jar

  • B
  • Apr 28, 2017
  • 142.91 KB
  • 2.8K
  • 1.11.2

File Name

jsonRecipeEdit-1.11.2-0.7.jar

Supported Versions

  • 1.11.2

Command block/chain commands:

 

add '/jsonRecipeEdit runin <radius> <cmd>'

 

*if radius = 0: this will run the command chains with trigger "Run: <cmd>" at the "callers" location instead of spawn 

*if radius is > 0: this will run the command in the cube centered on the callers location, where the sides are radius blocks out

 

(I added this for implementing some custom spawn rules, since its good for "ticking" blocks near a player or special entity.)

 

Changes to "Block Drop" command:

 

new fields added:

"exp": amount of XP to drop when the block breaks and the user isn't using silk touch

"silktouch" like "drops" but these drop when the player uses silk touch, (if omited this defaults to the same settings as drops)

"silkdropone" allows you to have silk tough use the "dropone" rule, even if normal drops are not. (thus letting normal drops be impacted by fortune)

 

Example make iron_ore drop nuggets, unless silk touched:

[
  {
    "command": "block drops",
    "block": "minecraft:iron_ore",
    "droporiginal": false,
    "exp": 10,
    "dropone": false,
    "fortunemultiplier": 1.4,
    "drops": [
      {
        "item": ["minecraft:iron_nugget"],
        "count": 1,
        "weight": 3.81
      }
    ],
    "silkdropone": true,
    "silktouch": [
      {
        "item": ["minecraft:iron_ore"],
        "count": 1,
        "weight": 1
      }
    ]
  }
]