These are the functions which can be called on a minecraft:item_durability_changed 
criteria trigger.



setDurabilityMin:
    Arguments:
        float
    Usage:
        min
    Notes:
        Sets the min item durability.

setDurabilityMax:
    Arguments:
        float
    Usage:
        max
    Notes:
        Sets the max item durability.

getItemData:
    Notes:
        Returns the ItemData object so functions can be called on it.

setOreDict:
    Arguments:
        String
    Usage:
        ore dict name
    Notes:
        Sets the ore dictionary for the trigger.

setItem:
    Arguments:
        String
    Usage:
        item name
    Notes:
        Sets the required item. This counts for any meta.

setItem:
    Arguments:
        String, Integer
    Usage:
        item name, meta
    Notes:
        Sets the required item with the provided meta.

setDurabilityMinMax:
    Arguments:
        float, float
    Usage:
        min, max
    Notes:
        Sets the min and max item durability.

setDeltaMinMax:
    Arguments:
        float, float
    Usage:
        min, max
    Notes:
        Sets the min and max delta.

setDeltaMax:
    Arguments:
        float
    Usage:
        max
    Notes:
        Sets the max delta.

setDeltaMin:
    Arguments:
        float
    Usage:
        min
    Notes:
        Sets the min delta.

