Item Conditions
Sometimes normal items won’t cut it and we want to:
- specify recipes that only work when the input item fulfills some conditions.
- specify recipes that will produce a special item, be it with NBT-Tag or Damage value or otherwise.
Importing the package
It might be required for you to import the package if you encounter any issues (like casting an Array), so better be safe than sorry and add the import.
import crafttweaker.item.IItemCondition;
Input Conditions
These will affect the items that you can use to craft the resulting item. Remember, you can mix modifiers, to mix Damage and NBT-Tag, for example
Damage
anyDamage
The input item’s damage value does not matter for the recipe
onlyDamaged
The input item needs to be damaged. Only works in combination with anyDamage()
!
Damaged at least
Input item’s damage value needs to be at least the specified value
. Only works in combination with anyDamage()
!
Damaged at most
Input item’s damage value needs to be at most the specified value
. Only works in combination with anyDamage()
!
Damaged between
Input item’s damage value needs to be between the specified min
and max
. Only works in combination with anyDamage()
!
transformDamage
The input item will receive value
damage points and you will get it back, unless it breaks during the crafting process.
You can also use this to repair items by having a negative value
.
NBT-Tags
Sometimes you want your ingredients to require a specific NBT-Tag. The recipe doesn’t care if your item has NBT-Tags other than the ones specified, So a pickaxe with a specific lore may also be enchanted!
If you use withTag
JEI will display it properly, if you use onlyWithTag
, JEI will only display a tagless item!
Here’s how you do it:
Output modifiers
If you can specify input conditions, it’s not so hard to also define output conditions, or rather, output modifiers.
Damage
Your output item will have value
damage points.
NBT-Tags
Your output item will have tag
as the NBT-Tag.
Registering custom Item Conditions
You can also add your own itemConditions. These are special functions that accept the item itself as single parameter.
The function needs to return a bool that is true if the item matches the condition.