Registry Modifiers
Format
{
// The type of config to target
// The registry name of each config is given on its respective docs page
"registry": "cold_sweat:entity/entity_temp",
// Config formats to check ("toml", "json", "kubejs")
// Can also be a single element: "config_type": "json"
"config_type": [
"json"
],
// List of IDs to check. These IDs are registered by MC when datapacks are parsed
// Only JSON registries have IDs, so this does not work for TOML or KubeJS configs
"entries": [
"cold_sweat:on_fire"
],
// Any configs matching the given data structure(s) are modified
// These are NBT requirements, so Cold Sweat's special NBT functions also work here
"matches": [
{
"flags": {
"is_baby": false
},
"nbt": {
"Burning": 1
}
},
{
// ..more checks
}
],
// A list of operations to perform on the target's data
// Explained in the section below
"operations": [
]
}Operations
disable
disablereplace
replacemerge
mergeappend
appendremove
removeLast updated