Tag Registration (Section) — SkNMS

Addon: SkNMS · Category: Section · Since: INSERT VERSION

Syntax

register tag %string/tagkey/namespacedkey% to %registrykey%

Description

Register tags in Minecraft registries. Similar to creating custom tags in Skript, but these are added directly to the Minecraft registry and can be used anywhere Minecraft uses tags. **NOTE**: Currently overriding vanilla tags appears to be broken.

Examples

registry registration:
	register tag "my_tags:tools" to item registry:
		apply item tag "minecraft:shovels" to tag
		apply item tag "minecraft:pickaxes" to tag
		apply item tag "minecraft:axes" to tag
		apply item tag "minecraft:hoes" to tag
		apply item tag "minecraft:swords" to tag
		apply item tag "minecraft:spears" to tag

	register tag "my_tags:ouchie_blocks" to block registry:
		apply cactus (itemtype) to tag
		apply fire to tag
		apply campfire (itemtype) to tag
		apply soul campfire to tag

	register tag "my_tags:hot_biomes" to biome registry:
		apply desert (biome) to tag
		apply savanna (biome) to tag
		apply badlands to tag

View source