Denizen Script Tags


Tags are always written with a <between these marks>, and are critical to scripts, as the primary way to read data.
Learn about how tags work in The Beginner's Guide.


Showing 1 out of 2484 tags...
Name<ItemTag.removed_components>
ReturnsListTag
MechanismItemTag.removed_components
Description(Property) Returns the item components explicitly removed from an item.
This can be used to remove item's default behavior, such as making consumable items non-consumable.
Alternatively, use Mechanism:ItemTag.remove_component to remove a single component.
See Language:Item Components for more information.
Generated Example
- foreach <player.item_in_hand.removed_components> as:entry:
    - narrate "found <[entry]>"
GroupProperties
Sourcehttps://github.com/DenizenScript/Denizen/blob/dev/paper/src/main/java/com/denizenscript/denizen/paper/properties/ItemRemovedComponents.java#L14