Denizen Script Object Types


Object Types are the fundamental types of data passed around in a Denizen script, often seen as the return type of a tag.
Learn about how objects work in The Beginner's Guide.


Showing 1 out of 24 object types...
NameModTag
Prefixmod@
Base TypeElementTag
Identity FormatThe identity format for mods is the mod id.
For example, 'mod@clientizen' or 'mod@theprinter'.
DescriptionA ModTag represents a currently loaded Fabric mod.

This can be either a mod that's been downloaded and installed, a built-in mod, or a mod within another mod (a library mod, for example)
MatchableModTag matchers:
"mod" plaintext: always matches.
Mod id: matches if the mod id matches the input, using advanced matchers.
Sourcehttps://github.com/DenizenScript/Clientizen/blob/master/src/main/java/com/denizenscript/clientizen/objects/ModTag.java#L22