-
Notifications
You must be signed in to change notification settings - Fork 798
Modifier Recipe JSON
Princess edited this page Mar 4, 2021
·
11 revisions
type
: Must be "tconstruct:modifier"
.
inputs
: List of SizedIngredients. The items to make a modifier out of.
result
: ModifierEntry. The resulting modifier.
tools
: Ingredient. Optional. The tool that the modifier requires.
requirements
: ModifierMatch. Optional. Modifiers required on the tool to apply the recipe.
upgrade_slots
: Integer. Defaults to 0. The amount of upgrade slots the modifier recipe takes.
ability_slots
: Integer. Defaults to 0. The amount of ability slots the modifier recipe takes. A modifier recipe cannot use both upgrade and ability slots.
max_level
: Integer. Defaults to 0. The amount of levels the modifier has.
{
"type": "tconstruct:modifier",
"inputs": [
{
"item": "tconstruct:ender_expander"
}
],
"tools": {
"tag": "tconstruct:modifiable/aoe"
},
"requirements": {
"name": "tconstruct:expanded",
"level": 1,
"error": "recipe.tconstruct.modifier.ender_expander_requirements"
},
"result": {
"name": "tconstruct:expanded",
"level": 1
},
"max_level": 2,
"ability_slots": 1
}