9
0
mirror of https://github.com/IrisDimensions/overworld.git synced 2026-01-06 15:41:43 +00:00
Files
Iris-Pack-Overworld/.iris/schema/regions-schema.json
Brian Fopiano ff6ba8bf52 Tropics
2021-08-30 16:28:48 -07:00

8610 lines
381 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "http://volmit.com/iris-schema/irisregion.json",
"description": "Represents an iris region",
"type": "object",
"properties": {
"preprocessors": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/erzscripts"},
"description": "preprocessors\nPreprocess this object in-memory when it's loaded, run scripts using the variable 'Iris.getPreprocessorObject()' and modify properties about this object before it's used.\n \nList<Script>\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list.\nMust be a valid Script (use ctrl+space for auto complete!)"
},
"name": {
"type": "string",
"minLength": 2,
"description": "name\nThe name of the region\n \nText\n\n \n* Default Value is A Region\n* Minimum Length allowed is 2"
},
"jigsawStructures": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisjigsawstructureplacement"},
"description": "jigsawStructures\nJigsaw structures\n \nList of JigsawStructurePlacements (Objects)\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list."
},
"features": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisfeaturepotential"},
"description": "features\nAdd random chances for terrain features\n \nList of FeaturePotentials (Objects)\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list."
},
"effects": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/obj-com-volmit-iris-engine-object-iriseffect"},
"description": "effects\nEffects are ambient effects such as potion effects, random sounds, or even particles around each player. All of these effects are played via packets so two players won't see/hear each others effects.\nDue to performance reasons, effects will play arround the player even if where the effect was played is no longer in the biome the player is in.\n \nList of Effects (Objects)\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list."
},
"entitySpawners": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/erzspawners"},
"description": "entitySpawners\nSpawn Entities in this region over time. Iris will continually replenish these mobs just like vanilla does.\n \nList<Spawner>\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list.\nMust be a valid Spawner (use ctrl+space for auto complete!)"
},
"rarity": {
"type": "integer",
"minimum": 1,
"maximum": 128,
"description": "rarity\nThe rarity of the region\n \nInteger\n\n \n* Default Value is 1\n* Minimum allowed is 1\n* Maximum allowed is 128"
},
"blockDrops": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisblockdrops"},
"description": "blockDrops\nDefine custom block drops for this region\n \nList of BlockDropss (Objects)\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list."
},
"shoreRatio": {
"type": "number",
"minimum": 1.0E-4,
"maximum": 1,
"description": "shoreRatio\nThe shore ration (How much percent of land should be a shore)\n \nNumber\n\n \n* Default Value is 0.13\n* Minimum allowed is 1.0E-4\n* Maximum allowed is 1.0"
},
"objects": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisobjectplacement"},
"description": "objects\nObjects define what schematics (iob files) iris will place in this region\n \nList of ObjectPlacements (Objects)\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list."
},
"shoreHeightMin": {
"type": "number",
"minimum": 0,
"description": "shoreHeightMin\nThe min shore height\n \nNumber\n\n \n* Default Value is 1.2\n* Minimum allowed is 0.0"
},
"loot": {
"anyOf": [
{
"!required": false,
"type": "object",
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irislootreference",
"description": "loot\nReference loot tables in this area\n \nLootReference (Object)\nRepresents a loot entry\n \nYou can instead specify \"snippet/loot-registry/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
{
"type": "string",
"$ref": "#/definitions/enum-snippet-loot-registry",
"description": "loot\nReference loot tables in this area\n \nLootReference (Object)\nRepresents a loot entry\n \nYou can instead specify \"snippet/loot-registry/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
],
"description": "loot\nReference loot tables in this area\n \nLootReference (Object)\nRepresents a loot entry\n \nYou can instead specify \"snippet/loot-registry/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
"shoreHeightMax": {
"type": "number",
"minimum": 0,
"description": "shoreHeightMax\nThe the max shore height\n \nNumber\n\n \n* Default Value is 3.2\n* Minimum allowed is 0.0"
},
"shoreHeightZoom": {
"type": "number",
"minimum": 1.0E-4,
"description": "shoreHeightZoom\nThe varience of the shore height\n \nNumber\n\n \n* Default Value is 3.14\n* Minimum allowed is 1.0E-4"
},
"landBiomeZoom": {
"type": "number",
"minimum": 1.0E-4,
"description": "landBiomeZoom\nHow large land biomes are in this region\n \nNumber\n\n \n* Default Value is 1.0\n* Minimum allowed is 1.0E-4"
},
"shoreBiomeZoom": {
"type": "number",
"minimum": 1.0E-4,
"description": "shoreBiomeZoom\nHow large shore biomes are in this region\n \nNumber\n\n \n* Default Value is 1.0\n* Minimum allowed is 1.0E-4"
},
"seaBiomeZoom": {
"type": "number",
"minimum": 1.0E-4,
"description": "seaBiomeZoom\nHow large sea biomes are in this region\n \nNumber\n\n \n* Default Value is 1.0\n* Minimum allowed is 1.0E-4"
},
"caveBiomeZoom": {
"type": "number",
"minimum": 1.0E-4,
"description": "caveBiomeZoom\nHow large cave biomes are in this region\n \nNumber\n\n \n* Default Value is 1.0\n* Minimum allowed is 1.0E-4"
},
"biomeImplosionRatio": {
"type": "number",
"minimum": 1.0E-4,
"maximum": 1,
"description": "biomeImplosionRatio\nThe biome implosion ratio, how much to implode biomes into children (chance)\n \nNumber\n\n \n* Default Value is 0.4\n* Minimum allowed is 1.0E-4\n* Maximum allowed is 1.0"
},
"carving": {
"anyOf": [
{
"!required": false,
"type": "object",
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-iriscarving",
"description": "carving\nCarving configuration for the dimension\n \nCarving (Object)\nRepresents a carving configuration\n \nYou can instead specify \"snippet/carving/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
{
"type": "string",
"$ref": "#/definitions/enum-snippet-carving",
"description": "carving\nCarving configuration for the dimension\n \nCarving (Object)\nRepresents a carving configuration\n \nYou can instead specify \"snippet/carving/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
],
"description": "carving\nCarving configuration for the dimension\n \nCarving (Object)\nRepresents a carving configuration\n \nYou can instead specify \"snippet/carving/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
"landBiomes": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/erzbiomes"},
"description": "landBiomes\nA list of root-level biomes in this region. Don't specify child biomes of other biomes here. Just the root parents.\n \nList<Biome>\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list.\nMust be a valid Biome (use ctrl+space for auto complete!)"
},
"seaBiomes": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/erzbiomes"},
"description": "seaBiomes\nA list of root-level biomes in this region. Don't specify child biomes of other biomes here. Just the root parents.\n \nList<Biome>\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list.\nMust be a valid Biome (use ctrl+space for auto complete!)"
},
"shoreBiomes": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/erzbiomes"},
"description": "shoreBiomes\nA list of root-level biomes in this region. Don't specify child biomes of other biomes here. Just the root parents.\n \nList<Biome>\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list.\nMust be a valid Biome (use ctrl+space for auto complete!)"
},
"caveBiomes": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/erzbiomes"},
"description": "caveBiomes\nA list of root-level biomes in this region. Don't specify child biomes of other biomes here. Just the root parents.\n \nList<Biome>\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list.\nMust be a valid Biome (use ctrl+space for auto complete!)"
},
"deposits": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisdepositgenerator"},
"description": "deposits\nDefine regional deposit generators that add onto the global deposit generators\n \nList of DepositGenerators (Objects)\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list."
},
"riverStyle": {
"anyOf": [
{
"!required": false,
"type": "object",
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisgeneratorstyle",
"description": "riverStyle\nThe style of rivers\n \nGeneratorStyle (Object)\nA gen style\n \nYou can instead specify \"snippet/style/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
{
"type": "string",
"$ref": "#/definitions/enum-snippet-style",
"description": "riverStyle\nThe style of rivers\n \nGeneratorStyle (Object)\nA gen style\n \nYou can instead specify \"snippet/style/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
],
"description": "riverStyle\nThe style of rivers\n \nGeneratorStyle (Object)\nA gen style\n \nYou can instead specify \"snippet/style/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
"lakeStyle": {
"anyOf": [
{
"!required": false,
"type": "object",
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisgeneratorstyle",
"description": "lakeStyle\nThe style of lakes\n \nGeneratorStyle (Object)\nA gen style\n \nYou can instead specify \"snippet/style/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
{
"type": "string",
"$ref": "#/definitions/enum-snippet-style",
"description": "lakeStyle\nThe style of lakes\n \nGeneratorStyle (Object)\nA gen style\n \nYou can instead specify \"snippet/style/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
],
"description": "lakeStyle\nThe style of lakes\n \nGeneratorStyle (Object)\nA gen style\n \nYou can instead specify \"snippet/style/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
"riverChanceStyle": {
"anyOf": [
{
"!required": false,
"type": "object",
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisgeneratorstyle",
"description": "riverChanceStyle\nThe style of river chances\n \nGeneratorStyle (Object)\nA gen style\n \nYou can instead specify \"snippet/style/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
{
"type": "string",
"$ref": "#/definitions/enum-snippet-style",
"description": "riverChanceStyle\nThe style of river chances\n \nGeneratorStyle (Object)\nA gen style\n \nYou can instead specify \"snippet/style/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
],
"description": "riverChanceStyle\nThe style of river chances\n \nGeneratorStyle (Object)\nA gen style\n \nYou can instead specify \"snippet/style/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
"lakes": {
"type": "boolean",
"description": "lakes\nGenerate lakes in this region\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
},
"rivers": {
"type": "boolean",
"description": "rivers\nGenerate rivers in this region\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
},
"lakeRarity": {
"type": "integer",
"minimum": 1,
"description": "lakeRarity\nGenerate lakes in this region\n \nInteger\n\n \n* Default Value is 22\n* Minimum allowed is 1"
},
"riverRarity": {
"type": "integer",
"minimum": 1,
"description": "riverRarity\nGenerate rivers in this region\n \nInteger\n\n \n* Default Value is 3\n* Minimum allowed is 1"
},
"riverThickness": {
"type": "number",
"minimum": 0,
"maximum": 1,
"description": "riverThickness\nGenerate rivers in this region\n \nNumber\n\n \n* Default Value is 0.1\n* Minimum allowed is 0.0\n* Maximum allowed is 1.0"
},
"color": {
"type": "string",
"description": "color\nA color for visualizing this region with a color. I.e. #F13AF5. This will show up on the map.\n \nText\n"
}
},
"definitions": {
"enum-org-bukkit-attribute-attribute": {"enum": [
"GENERIC_MAX_HEALTH",
"GENERIC_FOLLOW_RANGE",
"GENERIC_KNOCKBACK_RESISTANCE",
"GENERIC_MOVEMENT_SPEED",
"GENERIC_FLYING_SPEED",
"GENERIC_ATTACK_DAMAGE",
"GENERIC_ATTACK_KNOCKBACK",
"GENERIC_ATTACK_SPEED",
"GENERIC_ARMOR",
"GENERIC_ARMOR_TOUGHNESS",
"GENERIC_LUCK",
"HORSE_JUMP_STRENGTH",
"ZOMBIE_SPAWN_REINFORCEMENTS"
]},
"obj-com-volmit-iris-engine-object-iriseffect": {"anyOf": [
{
"description": "An iris effect",
"type": "object",
"properties": {
"potionEffect": {
"type": "string",
"description": "potionEffect\nThe potion effect to apply in this area\n \nText\n\n \n* Default Value is "
},
"particleEffect": {
"type": "string",
"$ref": "#/definitions/enum-org-bukkit-particle",
"description": "particleEffect\nThe particle effect to apply in the area\n \nParticle\n\nMust be a valid Particle (use ctrl+space for auto complete!)"
},
"particleOffset": {
"type": "integer",
"minimum": -32,
"maximum": 32,
"description": "particleOffset\nRandomly offset from the surface to this surface+value\n \nInteger\n\n \n* Default Value is 0\n* Minimum allowed is -32\n* Maximum allowed is 32"
},
"particleAltX": {
"type": "number",
"minimum": -8,
"maximum": 8,
"description": "particleAltX\nThe alt x, usually represents motion if the particle count is zero. Otherwise an offset.\n \nNumber\n\n \n* Default Value is 0.0\n* Minimum allowed is -8.0\n* Maximum allowed is 8.0"
},
"particleAltY": {
"type": "number",
"minimum": -8,
"maximum": 8,
"description": "particleAltY\nThe alt y, usually represents motion if the particle count is zero. Otherwise an offset.\n \nNumber\n\n \n* Default Value is 0.0\n* Minimum allowed is -8.0\n* Maximum allowed is 8.0"
},
"particleAltZ": {
"type": "number",
"minimum": -8,
"maximum": 8,
"description": "particleAltZ\nThe alt z, usually represents motion if the particle count is zero. Otherwise an offset.\n \nNumber\n\n \n* Default Value is 0.0\n* Minimum allowed is -8.0\n* Maximum allowed is 8.0"
},
"randomAltX": {
"type": "boolean",
"description": "randomAltX\nRandomize the altX by -altX to altX\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
},
"randomAltY": {
"type": "boolean",
"description": "randomAltY\nRandomize the altY by -altY to altY\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
},
"randomAltZ": {
"type": "boolean",
"description": "randomAltZ\nRandomize the altZ by -altZ to altZ\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
},
"sound": {
"type": "string",
"$ref": "#/definitions/enum-org-bukkit-sound",
"description": "sound\nThe sound to play\n \nSound\n\nMust be a valid Sound (use ctrl+space for auto complete!)"
},
"soundDistance": {
"type": "integer",
"minimum": 0,
"maximum": 512,
"description": "soundDistance\nThe max distance from the player the sound will play\n \nInteger\n\n \n* Default Value is 12\n* Minimum allowed is 0\n* Maximum allowed is 512"
},
"minPitch": {
"type": "number",
"minimum": 0.01,
"maximum": 1.99,
"description": "minPitch\nThe minimum sound pitch\n \nNumber\n\n \n* Default Value is 0.5\n* Minimum allowed is 0.01\n* Maximum allowed is 1.99"
},
"maxPitch": {
"type": "number",
"minimum": 0.01,
"maximum": 1.99,
"description": "maxPitch\nThe max sound pitch\n \nNumber\n\n \n* Default Value is 1.5\n* Minimum allowed is 0.01\n* Maximum allowed is 1.99"
},
"volume": {
"type": "number",
"minimum": 0.001,
"maximum": 512,
"description": "volume\nThe sound volume.\n \nNumber\n\n \n* Default Value is 1.5\n* Minimum allowed is 0.001\n* Maximum allowed is 512.0"
},
"particleCount": {
"type": "integer",
"minimum": 0,
"maximum": 512,
"description": "particleCount\nThe particle count. Try setting to zero for using the alt xyz to a motion value instead of an offset\n \nInteger\n\n \n* Default Value is 0\n* Minimum allowed is 0\n* Maximum allowed is 512"
},
"particleDistance": {
"type": "integer",
"minimum": 0,
"maximum": 64,
"description": "particleDistance\nHow far away from the player particles can play\n \nInteger\n\n \n* Default Value is 20\n* Minimum allowed is 0\n* Maximum allowed is 64"
},
"particleDistanceWidth": {
"type": "integer",
"minimum": 0,
"maximum": 128,
"description": "particleDistanceWidth\nHow wide the particles can play (player's view left and right) RADIUS\n \nInteger\n\n \n* Default Value is 24\n* Minimum allowed is 0\n* Maximum allowed is 128"
},
"extra": {
"type": "number",
"description": "extra\nAn extra value for some particles... Which bukkit doesn't even document.\n \nNumber\n\n \n* Default Value is 0.0"
},
"potionStrength": {
"type": "integer",
"minimum": -1,
"maximum": 1024,
"description": "potionStrength\nThe Potion Strength or -1 to disable\n \nInteger\n\n \n* Default Value is -1\n* Minimum allowed is -1\n* Maximum allowed is 1024"
},
"potionTicksMax": {
"type": "integer",
"minimum": 1,
"description": "potionTicksMax\nThe max time the potion will last for\n \nInteger\n\n \n* Default Value is 155\n* Minimum allowed is 1"
},
"potionTicksMin": {
"type": "integer",
"minimum": 1,
"description": "potionTicksMin\nThe min time the potion will last for\n \nInteger\n\n \n* Default Value is 75\n* Minimum allowed is 1"
},
"interval": {
"type": "integer",
"minimum": 0,
"description": "interval\nThe effect interval in milliseconds\n \nInteger\n\n \n* Default Value is 150\n* Minimum allowed is 0"
},
"particleAway": {
"type": "integer",
"minimum": 0,
"maximum": 16,
"description": "particleAway\nThe effect distance start away\n \nInteger\n\n \n* Default Value is 5\n* Minimum allowed is 0\n* Maximum allowed is 16"
},
"chance": {
"type": "integer",
"minimum": 1,
"description": "chance\nThe chance is 1 in CHANCE per interval\n \nInteger\n\n \n* Default Value is 50\n* Minimum allowed is 1"
}
}
},
{"type": "string"}
]},
"obj-com-volmit-iris-engine-object-irisloot": {"anyOf": [
{
"description": "Represents a loot entry",
"type": "object",
"properties": {
"slotTypes": {
"type": "string",
"$ref": "#/definitions/oneof-enum-com-volmit-iris-engine-object-inventoryslottype",
"description": "slotTypes\nThe target inventory slot types to fill this loot with\n \nInventorySlotType\nAn inventory slot type is used to represent a type of slot for items to fit into in any given inventory.\n \n* Default Value is a default object (create this object to see default properties)\nMust be a valid InventorySlotType (use ctrl+space for auto complete!)"
},
"rarity": {
"type": "integer",
"minimum": 1,
"description": "rarity\nThe sub rarity of this loot. Calculated after this loot table has been picked.\n \nInteger\n\n \n* Default Value is 1\n* Minimum allowed is 1"
},
"minAmount": {
"type": "integer",
"minimum": 1,
"description": "minAmount\nMinimum amount of this loot\n \nInteger\n\n \n* Default Value is 1\n* Minimum allowed is 1"
},
"maxAmount": {
"type": "integer",
"minimum": 1,
"description": "maxAmount\nMaximum amount of this loot\n \nInteger\n\n \n* Default Value is 1\n* Minimum allowed is 1"
},
"displayName": {
"type": "string",
"minLength": 1,
"description": "displayName\nThe display name of this item\n \nText\n\n* Minimum Length allowed is 1"
},
"minDurability": {
"type": "number",
"minimum": 0,
"maximum": 1,
"description": "minDurability\nMinimum durability percent\n \nNumber\n\n \n* Default Value is 0.0\n* Minimum allowed is 0.0\n* Maximum allowed is 1.0"
},
"maxDurability": {
"type": "number",
"minimum": 0,
"maximum": 1,
"description": "maxDurability\nMaximum durability percent\n \nNumber\n\n \n* Default Value is 1.0\n* Minimum allowed is 0.0\n* Maximum allowed is 1.0"
},
"customModel": {
"type": "integer",
"description": "customModel\nDefine a custom model identifier 1.14+ only\n \nInteger\n"
},
"unbreakable": {
"type": "boolean",
"description": "unbreakable\nSet this to true to prevent it from being broken\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
},
"itemFlags": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/enum-org-bukkit-inventory-itemflag"},
"description": "itemFlags\nThe item flags to add\n \nList of ItemFlags\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list.\nMust be a valid ItemFlag (use ctrl+space for auto complete!)"
},
"enchantments": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisenchantment"},
"description": "enchantments\nApply enchantments to this item\n \nList of Enchantments (Objects)\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list."
},
"attributes": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisattributemodifier"},
"description": "attributes\nApply attribute modifiers to this item\n \nList of AttributeModifiers (Objects)\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list."
},
"lore": {
"type": "array",
"minItems": 1,
"description": "lore\nAdd lore to this item\n \nList of Text\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list."
},
"type": {
"type": "string",
"$ref": "#/definitions/enum-item-type",
"description": "type\nThis is the item or block type. Does not accept minecraft:*. Only materials such as DIAMOND_SWORD or DIRT.\n \nItem Type\n\n \n* Default Value is \nMust be a valid Item Type (use ctrl+space for auto complete!)"
},
"dyeColor": {
"type": "string",
"$ref": "#/definitions/enum-org-bukkit-dyecolor",
"description": "dyeColor\nThe dye color\n \nDyeColor\n\nMust be a valid DyeColor (use ctrl+space for auto complete!)"
},
"leatherColor": {
"type": "string",
"description": "leatherColor\nThe leather armor color\n \nText\n"
}
}
},
{"type": "string"}
]},
"obj-com-volmit-iris-engine-object-irismaterialpalette": {"anyOf": [
{
"description": "A palette of materials",
"type": "object",
"properties": {
"style": {
"anyOf": [
{
"!required": false,
"type": "object",
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisgeneratorstyle",
"description": "style\nThe style of noise\n \nGeneratorStyle (Object)\nA gen style\n \nYou can instead specify \"snippet/style/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
{
"type": "string",
"$ref": "#/definitions/enum-snippet-style",
"description": "style\nThe style of noise\n \nGeneratorStyle (Object)\nA gen style\n \nYou can instead specify \"snippet/style/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
],
"description": "style\nThe style of noise\n \nGeneratorStyle (Object)\nA gen style\n \nYou can instead specify \"snippet/style/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
"zoom": {
"type": "number",
"minimum": 1.0E-4,
"description": "zoom\nThe terrain zoom mostly for zooming in on a wispy palette\n \nNumber\n\n \n* Default Value is 5.0\n* Minimum allowed is 1.0E-4"
},
"palette": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisblockdata"},
"description": "palette\nThe palette of blocks to be used in this layer\n \nList of BlockDatas (Objects)\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list."
}
}
},
{"type": "string"}
]},
"obj-com-volmit-iris-engine-object-irisobjectscale": {"anyOf": [
{
"description": "Scale objects",
"type": "object",
"properties": {
"variations": {
"type": "integer",
"minimum": 1,
"maximum": 32,
"description": "variations\nIris Objects are scaled and cached to speed up placements. Because of this extra memory is used, so we evenly distribute variations across the defined scale range, then pick one randomly. If the differences is small, use a lower number. For more possibilities on the scale spectrum, increase this at the cost of memory.\n \nInteger\n\n \n* Default Value is 7\n* Minimum allowed is 1\n* Maximum allowed is 32"
},
"minimumScale": {
"type": "number",
"minimum": 0.01,
"maximum": 50,
"description": "minimumScale\nThe minimum scale\n \nNumber\n\n \n* Default Value is 1.0\n* Minimum allowed is 0.01\n* Maximum allowed is 50.0"
},
"maximumScale": {
"type": "number",
"minimum": 0.01,
"maximum": 50,
"description": "maximumScale\nThe maximum height for placement (top of object)\n \nNumber\n\n \n* Default Value is 1.0\n* Minimum allowed is 0.01\n* Maximum allowed is 50.0"
},
"interpolation": {
"type": "string",
"$ref": "#/definitions/oneof-enum-com-volmit-iris-engine-object-irisobjectplacementscaleinterpolator",
"description": "interpolation\nIf this object is scaled up beyond its origin size, specify a 3D interpolator\n \nObjectPlacementScaleInterpolator\nUse 3D Interpolation on scaled objects if they are larger than the origin.\n \n* Default Value is a default object (create this object to see default properties)\nMust be a valid ObjectPlacementScaleInterpolator (use ctrl+space for auto complete!)"
}
}
},
{"type": "string"}
]},
"obj-com-volmit-iris-engine-object-irisobjectreplace": {"anyOf": [
{
"description": "Find and replace object materials",
"type": "object",
"properties": {
"find": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisblockdata"},
"description": "find\nFind this block\n \nList of BlockDatas (Objects)\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list."
},
"replace": {
"anyOf": [
{
"!required": true,
"type": "object",
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irismaterialpalette",
"description": "replace\nReplace it with this block palette\n \nMaterialPalette (Object)\nA palette of materials\n \nYou can instead specify \"snippet/palette/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
{
"type": "string",
"$ref": "#/definitions/enum-snippet-palette",
"description": "replace\nReplace it with this block palette\n \nMaterialPalette (Object)\nA palette of materials\n \nYou can instead specify \"snippet/palette/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
],
"description": "replace\nReplace it with this block palette\n \nMaterialPalette (Object)\nA palette of materials\n \nYou can instead specify \"snippet/palette/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
"exact": {
"type": "boolean",
"description": "exact\nExactly match the block data or not\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
},
"chance": {
"type": "number",
"minimum": 0,
"maximum": 1,
"description": "chance\nModifies the chance the block is replaced\n \nNumber\n\n \n* Default Value is 1.0\n* Minimum allowed is 0.0\n* Maximum allowed is 1.0"
}
}
},
{"type": "string"}
]},
"enum-item-type": {"enum": [
"air",
"stone",
"granite",
"polished_granite",
"diorite",
"polished_diorite",
"andesite",
"polished_andesite",
"deepslate",
"cobbled_deepslate",
"polished_deepslate",
"calcite",
"tuff",
"dripstone_block",
"grass_block",
"dirt",
"coarse_dirt",
"podzol",
"rooted_dirt",
"crimson_nylium",
"warped_nylium",
"cobblestone",
"oak_planks",
"spruce_planks",
"birch_planks",
"jungle_planks",
"acacia_planks",
"dark_oak_planks",
"crimson_planks",
"warped_planks",
"oak_sapling",
"spruce_sapling",
"birch_sapling",
"jungle_sapling",
"acacia_sapling",
"dark_oak_sapling",
"bedrock",
"sand",
"red_sand",
"gravel",
"coal_ore",
"deepslate_coal_ore",
"iron_ore",
"deepslate_iron_ore",
"copper_ore",
"deepslate_copper_ore",
"gold_ore",
"deepslate_gold_ore",
"redstone_ore",
"deepslate_redstone_ore",
"emerald_ore",
"deepslate_emerald_ore",
"lapis_ore",
"deepslate_lapis_ore",
"diamond_ore",
"deepslate_diamond_ore",
"nether_gold_ore",
"nether_quartz_ore",
"ancient_debris",
"coal_block",
"raw_iron_block",
"raw_copper_block",
"raw_gold_block",
"amethyst_block",
"budding_amethyst",
"iron_block",
"copper_block",
"gold_block",
"diamond_block",
"netherite_block",
"exposed_copper",
"weathered_copper",
"oxidized_copper",
"cut_copper",
"exposed_cut_copper",
"weathered_cut_copper",
"oxidized_cut_copper",
"cut_copper_stairs",
"exposed_cut_copper_stairs",
"weathered_cut_copper_stairs",
"oxidized_cut_copper_stairs",
"cut_copper_slab",
"exposed_cut_copper_slab",
"weathered_cut_copper_slab",
"oxidized_cut_copper_slab",
"waxed_copper_block",
"waxed_exposed_copper",
"waxed_weathered_copper",
"waxed_oxidized_copper",
"waxed_cut_copper",
"waxed_exposed_cut_copper",
"waxed_weathered_cut_copper",
"waxed_oxidized_cut_copper",
"waxed_cut_copper_stairs",
"waxed_exposed_cut_copper_stairs",
"waxed_weathered_cut_copper_stairs",
"waxed_oxidized_cut_copper_stairs",
"waxed_cut_copper_slab",
"waxed_exposed_cut_copper_slab",
"waxed_weathered_cut_copper_slab",
"waxed_oxidized_cut_copper_slab",
"oak_log",
"spruce_log",
"birch_log",
"jungle_log",
"acacia_log",
"dark_oak_log",
"crimson_stem",
"warped_stem",
"stripped_oak_log",
"stripped_spruce_log",
"stripped_birch_log",
"stripped_jungle_log",
"stripped_acacia_log",
"stripped_dark_oak_log",
"stripped_crimson_stem",
"stripped_warped_stem",
"stripped_oak_wood",
"stripped_spruce_wood",
"stripped_birch_wood",
"stripped_jungle_wood",
"stripped_acacia_wood",
"stripped_dark_oak_wood",
"stripped_crimson_hyphae",
"stripped_warped_hyphae",
"oak_wood",
"spruce_wood",
"birch_wood",
"jungle_wood",
"acacia_wood",
"dark_oak_wood",
"crimson_hyphae",
"warped_hyphae",
"oak_leaves",
"spruce_leaves",
"birch_leaves",
"jungle_leaves",
"acacia_leaves",
"dark_oak_leaves",
"azalea_leaves",
"flowering_azalea_leaves",
"sponge",
"wet_sponge",
"glass",
"tinted_glass",
"lapis_block",
"sandstone",
"chiseled_sandstone",
"cut_sandstone",
"cobweb",
"grass",
"fern",
"azalea",
"flowering_azalea",
"dead_bush",
"seagrass",
"sea_pickle",
"white_wool",
"orange_wool",
"magenta_wool",
"light_blue_wool",
"yellow_wool",
"lime_wool",
"pink_wool",
"gray_wool",
"light_gray_wool",
"cyan_wool",
"purple_wool",
"blue_wool",
"brown_wool",
"green_wool",
"red_wool",
"black_wool",
"dandelion",
"poppy",
"blue_orchid",
"allium",
"azure_bluet",
"red_tulip",
"orange_tulip",
"white_tulip",
"pink_tulip",
"oxeye_daisy",
"cornflower",
"lily_of_the_valley",
"wither_rose",
"spore_blossom",
"brown_mushroom",
"red_mushroom",
"crimson_fungus",
"warped_fungus",
"crimson_roots",
"warped_roots",
"nether_sprouts",
"weeping_vines",
"twisting_vines",
"sugar_cane",
"kelp",
"moss_carpet",
"moss_block",
"hanging_roots",
"big_dripleaf",
"small_dripleaf",
"bamboo",
"oak_slab",
"spruce_slab",
"birch_slab",
"jungle_slab",
"acacia_slab",
"dark_oak_slab",
"crimson_slab",
"warped_slab",
"stone_slab",
"smooth_stone_slab",
"sandstone_slab",
"cut_sandstone_slab",
"petrified_oak_slab",
"cobblestone_slab",
"brick_slab",
"stone_brick_slab",
"nether_brick_slab",
"quartz_slab",
"red_sandstone_slab",
"cut_red_sandstone_slab",
"purpur_slab",
"prismarine_slab",
"prismarine_brick_slab",
"dark_prismarine_slab",
"smooth_quartz",
"smooth_red_sandstone",
"smooth_sandstone",
"smooth_stone",
"bricks",
"bookshelf",
"mossy_cobblestone",
"obsidian",
"torch",
"end_rod",
"chorus_plant",
"chorus_flower",
"purpur_block",
"purpur_pillar",
"purpur_stairs",
"spawner",
"oak_stairs",
"chest",
"crafting_table",
"farmland",
"furnace",
"ladder",
"cobblestone_stairs",
"snow",
"ice",
"snow_block",
"cactus",
"clay",
"jukebox",
"oak_fence",
"spruce_fence",
"birch_fence",
"jungle_fence",
"acacia_fence",
"dark_oak_fence",
"crimson_fence",
"warped_fence",
"pumpkin",
"carved_pumpkin",
"jack_o_lantern",
"netherrack",
"soul_sand",
"soul_soil",
"basalt",
"polished_basalt",
"smooth_basalt",
"soul_torch",
"glowstone",
"infested_stone",
"infested_cobblestone",
"infested_stone_bricks",
"infested_mossy_stone_bricks",
"infested_cracked_stone_bricks",
"infested_chiseled_stone_bricks",
"infested_deepslate",
"stone_bricks",
"mossy_stone_bricks",
"cracked_stone_bricks",
"chiseled_stone_bricks",
"deepslate_bricks",
"cracked_deepslate_bricks",
"deepslate_tiles",
"cracked_deepslate_tiles",
"chiseled_deepslate",
"brown_mushroom_block",
"red_mushroom_block",
"mushroom_stem",
"iron_bars",
"chain",
"glass_pane",
"melon",
"vine",
"glow_lichen",
"brick_stairs",
"stone_brick_stairs",
"mycelium",
"lily_pad",
"nether_bricks",
"cracked_nether_bricks",
"chiseled_nether_bricks",
"nether_brick_fence",
"nether_brick_stairs",
"enchanting_table",
"end_portal_frame",
"end_stone",
"end_stone_bricks",
"dragon_egg",
"sandstone_stairs",
"ender_chest",
"emerald_block",
"spruce_stairs",
"birch_stairs",
"jungle_stairs",
"crimson_stairs",
"warped_stairs",
"command_block",
"beacon",
"cobblestone_wall",
"mossy_cobblestone_wall",
"brick_wall",
"prismarine_wall",
"red_sandstone_wall",
"mossy_stone_brick_wall",
"granite_wall",
"stone_brick_wall",
"nether_brick_wall",
"andesite_wall",
"red_nether_brick_wall",
"sandstone_wall",
"end_stone_brick_wall",
"diorite_wall",
"blackstone_wall",
"polished_blackstone_wall",
"polished_blackstone_brick_wall",
"cobbled_deepslate_wall",
"polished_deepslate_wall",
"deepslate_brick_wall",
"deepslate_tile_wall",
"anvil",
"chipped_anvil",
"damaged_anvil",
"chiseled_quartz_block",
"quartz_block",
"quartz_bricks",
"quartz_pillar",
"quartz_stairs",
"white_terracotta",
"orange_terracotta",
"magenta_terracotta",
"light_blue_terracotta",
"yellow_terracotta",
"lime_terracotta",
"pink_terracotta",
"gray_terracotta",
"light_gray_terracotta",
"cyan_terracotta",
"purple_terracotta",
"blue_terracotta",
"brown_terracotta",
"green_terracotta",
"red_terracotta",
"black_terracotta",
"barrier",
"light",
"hay_block",
"white_carpet",
"orange_carpet",
"magenta_carpet",
"light_blue_carpet",
"yellow_carpet",
"lime_carpet",
"pink_carpet",
"gray_carpet",
"light_gray_carpet",
"cyan_carpet",
"purple_carpet",
"blue_carpet",
"brown_carpet",
"green_carpet",
"red_carpet",
"black_carpet",
"terracotta",
"packed_ice",
"acacia_stairs",
"dark_oak_stairs",
"dirt_path",
"sunflower",
"lilac",
"rose_bush",
"peony",
"tall_grass",
"large_fern",
"white_stained_glass",
"orange_stained_glass",
"magenta_stained_glass",
"light_blue_stained_glass",
"yellow_stained_glass",
"lime_stained_glass",
"pink_stained_glass",
"gray_stained_glass",
"light_gray_stained_glass",
"cyan_stained_glass",
"purple_stained_glass",
"blue_stained_glass",
"brown_stained_glass",
"green_stained_glass",
"red_stained_glass",
"black_stained_glass",
"white_stained_glass_pane",
"orange_stained_glass_pane",
"magenta_stained_glass_pane",
"light_blue_stained_glass_pane",
"yellow_stained_glass_pane",
"lime_stained_glass_pane",
"pink_stained_glass_pane",
"gray_stained_glass_pane",
"light_gray_stained_glass_pane",
"cyan_stained_glass_pane",
"purple_stained_glass_pane",
"blue_stained_glass_pane",
"brown_stained_glass_pane",
"green_stained_glass_pane",
"red_stained_glass_pane",
"black_stained_glass_pane",
"prismarine",
"prismarine_bricks",
"dark_prismarine",
"prismarine_stairs",
"prismarine_brick_stairs",
"dark_prismarine_stairs",
"sea_lantern",
"red_sandstone",
"chiseled_red_sandstone",
"cut_red_sandstone",
"red_sandstone_stairs",
"repeating_command_block",
"chain_command_block",
"magma_block",
"nether_wart_block",
"warped_wart_block",
"red_nether_bricks",
"bone_block",
"structure_void",
"shulker_box",
"white_shulker_box",
"orange_shulker_box",
"magenta_shulker_box",
"light_blue_shulker_box",
"yellow_shulker_box",
"lime_shulker_box",
"pink_shulker_box",
"gray_shulker_box",
"light_gray_shulker_box",
"cyan_shulker_box",
"purple_shulker_box",
"blue_shulker_box",
"brown_shulker_box",
"green_shulker_box",
"red_shulker_box",
"black_shulker_box",
"white_glazed_terracotta",
"orange_glazed_terracotta",
"magenta_glazed_terracotta",
"light_blue_glazed_terracotta",
"yellow_glazed_terracotta",
"lime_glazed_terracotta",
"pink_glazed_terracotta",
"gray_glazed_terracotta",
"light_gray_glazed_terracotta",
"cyan_glazed_terracotta",
"purple_glazed_terracotta",
"blue_glazed_terracotta",
"brown_glazed_terracotta",
"green_glazed_terracotta",
"red_glazed_terracotta",
"black_glazed_terracotta",
"white_concrete",
"orange_concrete",
"magenta_concrete",
"light_blue_concrete",
"yellow_concrete",
"lime_concrete",
"pink_concrete",
"gray_concrete",
"light_gray_concrete",
"cyan_concrete",
"purple_concrete",
"blue_concrete",
"brown_concrete",
"green_concrete",
"red_concrete",
"black_concrete",
"white_concrete_powder",
"orange_concrete_powder",
"magenta_concrete_powder",
"light_blue_concrete_powder",
"yellow_concrete_powder",
"lime_concrete_powder",
"pink_concrete_powder",
"gray_concrete_powder",
"light_gray_concrete_powder",
"cyan_concrete_powder",
"purple_concrete_powder",
"blue_concrete_powder",
"brown_concrete_powder",
"green_concrete_powder",
"red_concrete_powder",
"black_concrete_powder",
"turtle_egg",
"dead_tube_coral_block",
"dead_brain_coral_block",
"dead_bubble_coral_block",
"dead_fire_coral_block",
"dead_horn_coral_block",
"tube_coral_block",
"brain_coral_block",
"bubble_coral_block",
"fire_coral_block",
"horn_coral_block",
"tube_coral",
"brain_coral",
"bubble_coral",
"fire_coral",
"horn_coral",
"dead_brain_coral",
"dead_bubble_coral",
"dead_fire_coral",
"dead_horn_coral",
"dead_tube_coral",
"tube_coral_fan",
"brain_coral_fan",
"bubble_coral_fan",
"fire_coral_fan",
"horn_coral_fan",
"dead_tube_coral_fan",
"dead_brain_coral_fan",
"dead_bubble_coral_fan",
"dead_fire_coral_fan",
"dead_horn_coral_fan",
"blue_ice",
"conduit",
"polished_granite_stairs",
"smooth_red_sandstone_stairs",
"mossy_stone_brick_stairs",
"polished_diorite_stairs",
"mossy_cobblestone_stairs",
"end_stone_brick_stairs",
"stone_stairs",
"smooth_sandstone_stairs",
"smooth_quartz_stairs",
"granite_stairs",
"andesite_stairs",
"red_nether_brick_stairs",
"polished_andesite_stairs",
"diorite_stairs",
"cobbled_deepslate_stairs",
"polished_deepslate_stairs",
"deepslate_brick_stairs",
"deepslate_tile_stairs",
"polished_granite_slab",
"smooth_red_sandstone_slab",
"mossy_stone_brick_slab",
"polished_diorite_slab",
"mossy_cobblestone_slab",
"end_stone_brick_slab",
"smooth_sandstone_slab",
"smooth_quartz_slab",
"granite_slab",
"andesite_slab",
"red_nether_brick_slab",
"polished_andesite_slab",
"diorite_slab",
"cobbled_deepslate_slab",
"polished_deepslate_slab",
"deepslate_brick_slab",
"deepslate_tile_slab",
"scaffolding",
"redstone",
"redstone_torch",
"redstone_block",
"repeater",
"comparator",
"piston",
"sticky_piston",
"slime_block",
"honey_block",
"observer",
"hopper",
"dispenser",
"dropper",
"lectern",
"target",
"lever",
"lightning_rod",
"daylight_detector",
"sculk_sensor",
"tripwire_hook",
"trapped_chest",
"tnt",
"redstone_lamp",
"note_block",
"stone_button",
"polished_blackstone_button",
"oak_button",
"spruce_button",
"birch_button",
"jungle_button",
"acacia_button",
"dark_oak_button",
"crimson_button",
"warped_button",
"stone_pressure_plate",
"polished_blackstone_pressure_plate",
"light_weighted_pressure_plate",
"heavy_weighted_pressure_plate",
"oak_pressure_plate",
"spruce_pressure_plate",
"birch_pressure_plate",
"jungle_pressure_plate",
"acacia_pressure_plate",
"dark_oak_pressure_plate",
"crimson_pressure_plate",
"warped_pressure_plate",
"iron_door",
"oak_door",
"spruce_door",
"birch_door",
"jungle_door",
"acacia_door",
"dark_oak_door",
"crimson_door",
"warped_door",
"iron_trapdoor",
"oak_trapdoor",
"spruce_trapdoor",
"birch_trapdoor",
"jungle_trapdoor",
"acacia_trapdoor",
"dark_oak_trapdoor",
"crimson_trapdoor",
"warped_trapdoor",
"oak_fence_gate",
"spruce_fence_gate",
"birch_fence_gate",
"jungle_fence_gate",
"acacia_fence_gate",
"dark_oak_fence_gate",
"crimson_fence_gate",
"warped_fence_gate",
"powered_rail",
"detector_rail",
"rail",
"activator_rail",
"saddle",
"minecart",
"chest_minecart",
"furnace_minecart",
"tnt_minecart",
"hopper_minecart",
"carrot_on_a_stick",
"warped_fungus_on_a_stick",
"elytra",
"oak_boat",
"spruce_boat",
"birch_boat",
"jungle_boat",
"acacia_boat",
"dark_oak_boat",
"structure_block",
"jigsaw",
"turtle_helmet",
"scute",
"flint_and_steel",
"apple",
"bow",
"arrow",
"coal",
"charcoal",
"diamond",
"emerald",
"lapis_lazuli",
"quartz",
"amethyst_shard",
"raw_iron",
"iron_ingot",
"raw_copper",
"copper_ingot",
"raw_gold",
"gold_ingot",
"netherite_ingot",
"netherite_scrap",
"wooden_sword",
"wooden_shovel",
"wooden_pickaxe",
"wooden_axe",
"wooden_hoe",
"stone_sword",
"stone_shovel",
"stone_pickaxe",
"stone_axe",
"stone_hoe",
"golden_sword",
"golden_shovel",
"golden_pickaxe",
"golden_axe",
"golden_hoe",
"iron_sword",
"iron_shovel",
"iron_pickaxe",
"iron_axe",
"iron_hoe",
"diamond_sword",
"diamond_shovel",
"diamond_pickaxe",
"diamond_axe",
"diamond_hoe",
"netherite_sword",
"netherite_shovel",
"netherite_pickaxe",
"netherite_axe",
"netherite_hoe",
"stick",
"bowl",
"mushroom_stew",
"string",
"feather",
"gunpowder",
"wheat_seeds",
"wheat",
"bread",
"leather_helmet",
"leather_chestplate",
"leather_leggings",
"leather_boots",
"chainmail_helmet",
"chainmail_chestplate",
"chainmail_leggings",
"chainmail_boots",
"iron_helmet",
"iron_chestplate",
"iron_leggings",
"iron_boots",
"diamond_helmet",
"diamond_chestplate",
"diamond_leggings",
"diamond_boots",
"golden_helmet",
"golden_chestplate",
"golden_leggings",
"golden_boots",
"netherite_helmet",
"netherite_chestplate",
"netherite_leggings",
"netherite_boots",
"flint",
"porkchop",
"cooked_porkchop",
"painting",
"golden_apple",
"enchanted_golden_apple",
"oak_sign",
"spruce_sign",
"birch_sign",
"jungle_sign",
"acacia_sign",
"dark_oak_sign",
"crimson_sign",
"warped_sign",
"bucket",
"water_bucket",
"lava_bucket",
"powder_snow_bucket",
"snowball",
"leather",
"milk_bucket",
"pufferfish_bucket",
"salmon_bucket",
"cod_bucket",
"tropical_fish_bucket",
"axolotl_bucket",
"brick",
"clay_ball",
"dried_kelp_block",
"paper",
"book",
"slime_ball",
"egg",
"compass",
"bundle",
"fishing_rod",
"clock",
"spyglass",
"glowstone_dust",
"cod",
"salmon",
"tropical_fish",
"pufferfish",
"cooked_cod",
"cooked_salmon",
"ink_sac",
"glow_ink_sac",
"cocoa_beans",
"white_dye",
"orange_dye",
"magenta_dye",
"light_blue_dye",
"yellow_dye",
"lime_dye",
"pink_dye",
"gray_dye",
"light_gray_dye",
"cyan_dye",
"purple_dye",
"blue_dye",
"brown_dye",
"green_dye",
"red_dye",
"black_dye",
"bone_meal",
"bone",
"sugar",
"cake",
"white_bed",
"orange_bed",
"magenta_bed",
"light_blue_bed",
"yellow_bed",
"lime_bed",
"pink_bed",
"gray_bed",
"light_gray_bed",
"cyan_bed",
"purple_bed",
"blue_bed",
"brown_bed",
"green_bed",
"red_bed",
"black_bed",
"cookie",
"filled_map",
"shears",
"melon_slice",
"dried_kelp",
"pumpkin_seeds",
"melon_seeds",
"beef",
"cooked_beef",
"chicken",
"cooked_chicken",
"rotten_flesh",
"ender_pearl",
"blaze_rod",
"ghast_tear",
"gold_nugget",
"nether_wart",
"potion",
"glass_bottle",
"spider_eye",
"fermented_spider_eye",
"blaze_powder",
"magma_cream",
"brewing_stand",
"cauldron",
"ender_eye",
"glistering_melon_slice",
"axolotl_spawn_egg",
"bat_spawn_egg",
"bee_spawn_egg",
"blaze_spawn_egg",
"cat_spawn_egg",
"cave_spider_spawn_egg",
"chicken_spawn_egg",
"cod_spawn_egg",
"cow_spawn_egg",
"creeper_spawn_egg",
"dolphin_spawn_egg",
"donkey_spawn_egg",
"drowned_spawn_egg",
"elder_guardian_spawn_egg",
"enderman_spawn_egg",
"endermite_spawn_egg",
"evoker_spawn_egg",
"fox_spawn_egg",
"ghast_spawn_egg",
"glow_squid_spawn_egg",
"goat_spawn_egg",
"guardian_spawn_egg",
"hoglin_spawn_egg",
"horse_spawn_egg",
"husk_spawn_egg",
"llama_spawn_egg",
"magma_cube_spawn_egg",
"mooshroom_spawn_egg",
"mule_spawn_egg",
"ocelot_spawn_egg",
"panda_spawn_egg",
"parrot_spawn_egg",
"phantom_spawn_egg",
"pig_spawn_egg",
"piglin_spawn_egg",
"piglin_brute_spawn_egg",
"pillager_spawn_egg",
"polar_bear_spawn_egg",
"pufferfish_spawn_egg",
"rabbit_spawn_egg",
"ravager_spawn_egg",
"salmon_spawn_egg",
"sheep_spawn_egg",
"shulker_spawn_egg",
"silverfish_spawn_egg",
"skeleton_spawn_egg",
"skeleton_horse_spawn_egg",
"slime_spawn_egg",
"spider_spawn_egg",
"squid_spawn_egg",
"stray_spawn_egg",
"strider_spawn_egg",
"trader_llama_spawn_egg",
"tropical_fish_spawn_egg",
"turtle_spawn_egg",
"vex_spawn_egg",
"villager_spawn_egg",
"vindicator_spawn_egg",
"wandering_trader_spawn_egg",
"witch_spawn_egg",
"wither_skeleton_spawn_egg",
"wolf_spawn_egg",
"zoglin_spawn_egg",
"zombie_spawn_egg",
"zombie_horse_spawn_egg",
"zombie_villager_spawn_egg",
"zombified_piglin_spawn_egg",
"experience_bottle",
"fire_charge",
"writable_book",
"written_book",
"item_frame",
"glow_item_frame",
"flower_pot",
"carrot",
"potato",
"baked_potato",
"poisonous_potato",
"map",
"golden_carrot",
"skeleton_skull",
"wither_skeleton_skull",
"player_head",
"zombie_head",
"creeper_head",
"dragon_head",
"nether_star",
"pumpkin_pie",
"firework_rocket",
"firework_star",
"enchanted_book",
"nether_brick",
"prismarine_shard",
"prismarine_crystals",
"rabbit",
"cooked_rabbit",
"rabbit_stew",
"rabbit_foot",
"rabbit_hide",
"armor_stand",
"iron_horse_armor",
"golden_horse_armor",
"diamond_horse_armor",
"leather_horse_armor",
"lead",
"name_tag",
"command_block_minecart",
"mutton",
"cooked_mutton",
"white_banner",
"orange_banner",
"magenta_banner",
"light_blue_banner",
"yellow_banner",
"lime_banner",
"pink_banner",
"gray_banner",
"light_gray_banner",
"cyan_banner",
"purple_banner",
"blue_banner",
"brown_banner",
"green_banner",
"red_banner",
"black_banner",
"end_crystal",
"chorus_fruit",
"popped_chorus_fruit",
"beetroot",
"beetroot_seeds",
"beetroot_soup",
"dragon_breath",
"splash_potion",
"spectral_arrow",
"tipped_arrow",
"lingering_potion",
"shield",
"totem_of_undying",
"shulker_shell",
"iron_nugget",
"knowledge_book",
"debug_stick",
"music_disc_13",
"music_disc_cat",
"music_disc_blocks",
"music_disc_chirp",
"music_disc_far",
"music_disc_mall",
"music_disc_mellohi",
"music_disc_stal",
"music_disc_strad",
"music_disc_ward",
"music_disc_11",
"music_disc_wait",
"music_disc_pigstep",
"trident",
"phantom_membrane",
"nautilus_shell",
"heart_of_the_sea",
"crossbow",
"suspicious_stew",
"loom",
"flower_banner_pattern",
"creeper_banner_pattern",
"skull_banner_pattern",
"mojang_banner_pattern",
"globe_banner_pattern",
"piglin_banner_pattern",
"composter",
"barrel",
"smoker",
"blast_furnace",
"cartography_table",
"fletching_table",
"grindstone",
"smithing_table",
"stonecutter",
"bell",
"lantern",
"soul_lantern",
"sweet_berries",
"glow_berries",
"campfire",
"soul_campfire",
"shroomlight",
"honeycomb",
"bee_nest",
"beehive",
"honey_bottle",
"honeycomb_block",
"lodestone",
"crying_obsidian",
"blackstone",
"blackstone_slab",
"blackstone_stairs",
"gilded_blackstone",
"polished_blackstone",
"polished_blackstone_slab",
"polished_blackstone_stairs",
"chiseled_polished_blackstone",
"polished_blackstone_bricks",
"polished_blackstone_brick_slab",
"polished_blackstone_brick_stairs",
"cracked_polished_blackstone_bricks",
"respawn_anchor",
"candle",
"white_candle",
"orange_candle",
"magenta_candle",
"light_blue_candle",
"yellow_candle",
"lime_candle",
"pink_candle",
"gray_candle",
"light_gray_candle",
"cyan_candle",
"purple_candle",
"blue_candle",
"brown_candle",
"green_candle",
"red_candle",
"black_candle",
"small_amethyst_bud",
"medium_amethyst_bud",
"large_amethyst_bud",
"amethyst_cluster",
"pointed_dripstone",
"water",
"lava",
"tall_seagrass",
"piston_head",
"moving_piston",
"wall_torch",
"fire",
"soul_fire",
"redstone_wire",
"oak_wall_sign",
"spruce_wall_sign",
"birch_wall_sign",
"acacia_wall_sign",
"jungle_wall_sign",
"dark_oak_wall_sign",
"redstone_wall_torch",
"soul_wall_torch",
"nether_portal",
"attached_pumpkin_stem",
"attached_melon_stem",
"pumpkin_stem",
"melon_stem",
"water_cauldron",
"lava_cauldron",
"powder_snow_cauldron",
"end_portal",
"cocoa",
"tripwire",
"potted_oak_sapling",
"potted_spruce_sapling",
"potted_birch_sapling",
"potted_jungle_sapling",
"potted_acacia_sapling",
"potted_dark_oak_sapling",
"potted_fern",
"potted_dandelion",
"potted_poppy",
"potted_blue_orchid",
"potted_allium",
"potted_azure_bluet",
"potted_red_tulip",
"potted_orange_tulip",
"potted_white_tulip",
"potted_pink_tulip",
"potted_oxeye_daisy",
"potted_cornflower",
"potted_lily_of_the_valley",
"potted_wither_rose",
"potted_red_mushroom",
"potted_brown_mushroom",
"potted_dead_bush",
"potted_cactus",
"carrots",
"potatoes",
"skeleton_wall_skull",
"wither_skeleton_wall_skull",
"zombie_wall_head",
"player_wall_head",
"creeper_wall_head",
"dragon_wall_head",
"white_wall_banner",
"orange_wall_banner",
"magenta_wall_banner",
"light_blue_wall_banner",
"yellow_wall_banner",
"lime_wall_banner",
"pink_wall_banner",
"gray_wall_banner",
"light_gray_wall_banner",
"cyan_wall_banner",
"purple_wall_banner",
"blue_wall_banner",
"brown_wall_banner",
"green_wall_banner",
"red_wall_banner",
"black_wall_banner",
"beetroots",
"end_gateway",
"frosted_ice",
"kelp_plant",
"dead_tube_coral_wall_fan",
"dead_brain_coral_wall_fan",
"dead_bubble_coral_wall_fan",
"dead_fire_coral_wall_fan",
"dead_horn_coral_wall_fan",
"tube_coral_wall_fan",
"brain_coral_wall_fan",
"bubble_coral_wall_fan",
"fire_coral_wall_fan",
"horn_coral_wall_fan",
"bamboo_sapling",
"potted_bamboo",
"void_air",
"cave_air",
"bubble_column",
"sweet_berry_bush",
"weeping_vines_plant",
"twisting_vines_plant",
"crimson_wall_sign",
"warped_wall_sign",
"potted_crimson_fungus",
"potted_warped_fungus",
"potted_crimson_roots",
"potted_warped_roots",
"candle_cake",
"white_candle_cake",
"orange_candle_cake",
"magenta_candle_cake",
"light_blue_candle_cake",
"yellow_candle_cake",
"lime_candle_cake",
"pink_candle_cake",
"gray_candle_cake",
"light_gray_candle_cake",
"cyan_candle_cake",
"purple_candle_cake",
"blue_candle_cake",
"brown_candle_cake",
"green_candle_cake",
"red_candle_cake",
"black_candle_cake",
"powder_snow",
"cave_vines",
"cave_vines_plant",
"big_dripleaf_stem",
"potted_azalea_bush",
"potted_flowering_azalea_bush"
]},
"obj-com-volmit-iris-engine-object-iristree": {"anyOf": [
{
"description": "Tree replace options for this object placer",
"type": "object",
"properties": {
"treeTypes": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/enum-org-bukkit-treetype"},
"description": "treeTypes\nThe types of trees overwritten by this object\n \nList of TreeTypes\n\n* At least one entry must be defined, or just remove this list.\nMust be a valid TreeType (use ctrl+space for auto complete!)"
},
"anyTree": {
"type": "boolean",
"description": "anyTree\nIf enabled, overrides any TreeType\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
},
"sizes": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/obj-com-volmit-iris-engine-object-iristreesize"},
"description": "sizes\nThe size of the square of saplings this applies to (2 means a 2 * 2 sapling area)\n \nList of TreeSizes (Objects)\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list."
},
"anySize": {
"type": "boolean",
"description": "anySize\nIf enabled, overrides trees of any size\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
}
}
},
{"type": "string"}
]},
"obj-com-volmit-iris-engine-object-iriscarving": {"anyOf": [
{
"description": "Represents a carving configuration",
"type": "object",
"properties": {
"caves": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/obj-com-volmit-iris-engine-object-iriscaveplacer"},
"description": "caves\nDefine cave placers\n \nList of CavePlacers (Objects)\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list."
},
"ravines": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisravineplacer"},
"description": "ravines\nDefine ravine placers\n \nList of RavinePlacers (Objects)\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list."
},
"elipsoids": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/obj-com-volmit-iris-engine-object-iriselipsoid"},
"description": "elipsoids\nDefine elipsoids\n \nList of Elipsoids (Objects)\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list."
},
"spheres": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irissphere"},
"description": "spheres\nDefine spheres\n \nList of Spheres (Objects)\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list."
},
"pyramids": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irispyramid"},
"description": "pyramids\nDefine pyramids\n \nList of Pyramids (Objects)\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list."
}
}
},
{"type": "string"}
]},
"erzcaves": {"enum": [
"sandstone/main",
"drip/main",
"swamp/main",
"rocky/main",
"jungle/main",
"granite/small",
"jungle/small",
"red-sandstone/main",
"sandstone/small",
"drip/small",
"calcite/small",
"mixed-sandstone/main",
"red-sandstone/small",
"volcanic/small",
"amethyst/small",
"simple/main",
"deep/main",
"ice/small",
"simple/small",
"volcanic/main",
"ice/main",
"swamp/small",
"calcite/main",
"rocky/small",
"mixed-sandstone/small"
]},
"obj-com-volmit-iris-engine-object-irisenchantment": {"anyOf": [
{
"description": "Represents an enchantment & level",
"type": "object",
"properties": {
"enchantment": {
"type": "string",
"description": "enchantment\nThe enchantment\n \nText\n\n \n* Default Value is "
},
"minLevel": {
"type": "integer",
"minimum": 1,
"description": "minLevel\nMinimum amount of this loot\n \nInteger\n\n \n* Default Value is 1\n* Minimum allowed is 1"
},
"maxLevel": {
"type": "integer",
"minimum": 1,
"description": "maxLevel\nMaximum amount of this loot\n \nInteger\n\n \n* Default Value is 1\n* Minimum allowed is 1"
},
"chance": {
"type": "number",
"minimum": 0,
"maximum": 1,
"description": "chance\nThe chance that this enchantment is applied (0 to 1)\n \nNumber\n\n \n* Default Value is 1.0\n* Minimum allowed is 0.0\n* Maximum allowed is 1.0"
}
}
},
{"type": "string"}
]},
"obj-com-volmit-iris-engine-object-irisfeature": {"anyOf": [
{
"description": "Represents an Iris zone",
"type": "object",
"properties": {
"blockRadius": {
"type": "number",
"description": "blockRadius\nThe block radius of this zone\n \nNumber\n\n \n* Default Value is 32.0"
},
"objectChance": {
"type": "number",
"minimum": 0,
"maximum": 1,
"description": "objectChance\nThe chance an object that should be place actually will place. Set to below 1 to affect objects in this zone\n \nNumber\n\n \n* Default Value is 1.0\n* Minimum allowed is 0.0\n* Maximum allowed is 1.0"
},
"customBiome": {
"type": "string",
"$ref": "#/definitions/erzbiomes",
"description": "customBiome\nApply a custom biome here\n \nIris Biome\n\nMust be a valid biomes (use ctrl+space for auto complete!)"
},
"biomeStrengthThreshold": {
"type": "number",
"minimum": 0,
"maximum": 1,
"description": "biomeStrengthThreshold\nHow much strength before the biome is applied.\n \nNumber\n\n \n* Default Value is 0.75\n* Minimum allowed is 0.0\n* Maximum allowed is 1.0"
},
"interpolationRadius": {
"type": "number",
"description": "interpolationRadius\nThe interpolation radius of this zone\n \nNumber\n\n \n* Default Value is 7.0"
},
"strength": {
"type": "number",
"minimum": 0,
"maximum": 1,
"description": "strength\nThe strength of this effect\n \nNumber\n\n \n* Default Value is 1.0\n* Minimum allowed is 0.0\n* Maximum allowed is 1.0"
},
"interpolator": {
"type": "string",
"$ref": "#/definitions/oneof-enum-com-volmit-iris-util-interpolation-interpolationmethod",
"description": "interpolator\nThe interpolator to use for smoothing the strength\n \nInterpolationMethod\nAn interpolation method (or function) is simply a method of smoothing a position based on surrounding points on a grid. Bicubic for example is smoother, but has 4 times the checks than Bilinear for example. Try using BILINEAR_STARCAST_9 for beautiful results.\n \n* Default Value is a default object (create this object to see default properties)\nMust be a valid InterpolationMethod (use ctrl+space for auto complete!)"
},
"shiftHeight": {
"type": "number",
"description": "shiftHeight\nIf set, this will shift the terrain height in blocks (up or down)\n \nNumber\n\n \n* Default Value is 0.0"
},
"convergeToHeight": {
"type": "number",
"description": "convergeToHeight\nIf set, this will force the terrain closer to the specified height.\n \nNumber\n\n \n* Default Value is -1.0"
},
"multiplyHeight": {
"type": "number",
"description": "multiplyHeight\nMultiplies the input noise\n \nNumber\n\n \n* Default Value is 1.0"
},
"invertZone": {
"type": "boolean",
"description": "invertZone\nInvert the zone so that anything outside this zone is affected.\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
},
"fractureRadius": {
"anyOf": [
{
"!required": false,
"type": "object",
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisgeneratorstyle",
"description": "fractureRadius\nFracture the radius ring with additional noise\n \nGeneratorStyle (Object)\nA gen style\n \nYou can instead specify \"snippet/style/some-name.json\" to use a snippet file instead of specifying it here."
},
{
"type": "string",
"$ref": "#/definitions/enum-snippet-style",
"description": "fractureRadius\nFracture the radius ring with additional noise\n \nGeneratorStyle (Object)\nA gen style\n \nYou can instead specify \"snippet/style/some-name.json\" to use a snippet file instead of specifying it here."
}
],
"description": "fractureRadius\nFracture the radius ring with additional noise\n \nGeneratorStyle (Object)\nA gen style\n \nYou can instead specify \"snippet/style/some-name.json\" to use a snippet file instead of specifying it here."
},
"entitySpawners": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/erzspawners"},
"description": "entitySpawners\nWithin this noise feature, use the following spawners\n \nList<Spawner>\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list.\nMust be a valid Spawner (use ctrl+space for auto complete!)"
}
}
},
{"type": "string"}
]},
"enum-snippet-style": {"enum": []},
"oneof-enum-com-volmit-iris-engine-object-objectplacemode": {"oneOf": [
{
"const": "CENTER_HEIGHT",
"description": "The default place mode. This mode picks a center point (where the center of the object will be) and takes the height. That height is used for the whole object."
},
{
"const": "MAX_HEIGHT",
"description": "Samples a lot of points where the object will cover (horizontally) and picks the highest height, that height is then used to place the object. This mode is useful for preventing any part of your object from being buried though it will float off of cliffs."
},
{
"const": "FAST_MAX_HEIGHT",
"description": "Samples only 4 points where the object will cover (horizontally) and picks the highest height, that height is then used to place the object. This mode is useful for preventing any part of your object from being buried though it will float off of cliffs.\""
},
{
"const": "MIN_HEIGHT",
"description": "Samples a lot of points where the object will cover (horizontally) and picks the lowest height, that height is then used to place the object. This mode is useful for preventing any part of your object from overhanging a cliff though it gets buried a lot"
},
{
"const": "FAST_MIN_HEIGHT",
"description": "Samples only 4 points where the object will cover (horizontally) and picks the lowest height, that height is then used to place the object. This mode is useful for preventing any part of your object from overhanging a cliff though it gets buried a lot"
},
{
"const": "STILT",
"description": "Stilting is MAX_HEIGHT but it repeats the bottom most block of your object until it hits the surface. This is expensive because it has to first sample every height value for each x,z position of your object. Avoid using this unless its structures for performance reasons."
},
{
"const": "FAST_STILT",
"description": "Just like stilting but very inaccurate. Useful for stilting a lot of objects without too much care on accuracy (you can use the over-stilt value to force stilts under ground further)"
},
{
"const": "PAINT",
"description": "Samples the height of the terrain at every x,z position of your object and pushes it down to the surface. It's pretty much like a melt function over the terrain."
},
{
"const": "VACUUM",
"description": "Applies multiple terrain features into the parallax layer before this object places to distort the height, essentially vacuuming the terrain's heightmap closer to the bottom of this object. Uses MAX_HEIGHT to place"
}
]},
"obj-com-volmit-iris-engine-object-irisobjectloot": {"anyOf": [
{
"description": "Represents loot within this object or jigsaw piece",
"type": "object",
"properties": {
"filter": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisblockdata"},
"description": "filter\nThe list of blocks this loot table should apply to\n \nList of BlockDatas (Objects)\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list."
},
"exact": {
"type": "boolean",
"description": "exact\nExactly match the block data or not\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
},
"name": {
"type": "string",
"$ref": "#/definitions/erzloot",
"description": "name\nThe loot table name\n \nIris Loot\n\nMust be a valid loot (use ctrl+space for auto complete!)"
},
"weight": {
"type": "integer",
"description": "weight\nThe weight of this loot table being chosen\n \nInteger\n\n \n* Default Value is 1"
}
}
},
{"type": "string"}
]},
"oneof-enum-com-volmit-iris-engine-object-noisestyle": {"oneOf": [
{
"const": "STATIC",
"description": "White Noise is like static. Useful for block scattering but not terrain."
},
{
"const": "STATIC_BILINEAR",
"description": "White Noise is like static. Useful for block scattering but not terrain."
},
{
"const": "STATIC_BICUBIC",
"description": "White Noise is like static. Useful for block scattering but not terrain."
},
{
"const": "STATIC_HERMITE",
"description": "White Noise is like static. Useful for block scattering but not terrain."
},
{
"const": "IRIS",
"description": "Wispy Perlin-looking simplex noise. The 'iris' style noise."
},
{
"const": "CLOVER",
"description": "Clover Noise"
},
{
"const": "CLOVER_STARCAST_3",
"description": "CLOVER noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "CLOVER_STARCAST_6",
"description": "CLOVER noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "CLOVER_STARCAST_9",
"description": "CLOVER noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "CLOVER_STARCAST_12",
"description": "CLOVER noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "CLOVER_BILINEAR_STARCAST_3",
"description": "CLOVER noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "CLOVER_BILINEAR_STARCAST_6",
"description": "CLOVER noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "CLOVER_BILINEAR_STARCAST_9",
"description": "CLOVER noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "CLOVER_BILINEAR_STARCAST_12",
"description": "CLOVER noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "CLOVER_HERMITE_STARCAST_3",
"description": "CLOVER noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "CLOVER_HERMITE_STARCAST_6",
"description": "CLOVER noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "CLOVER_HERMITE_STARCAST_9",
"description": "CLOVER noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "CLOVER_HERMITE_STARCAST_12",
"description": "CLOVER noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "CLOVER_BILINEAR",
"description": "CLOVER noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "CLOVER_BICUBIC",
"description": "CLOVER noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "CLOVER_HERMITE",
"description": "CLOVER noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "VASCULAR",
"description": "Vascular noise gets higher as the position nears a cell border."
},
{
"const": "FLAT",
"description": "It always returns 0.5"
},
{
"const": "CELLULAR",
"description": "Cellular noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "CELLULAR_STARCAST_3",
"description": "Cellular noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "CELLULAR_STARCAST_6",
"description": "Cellular noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "CELLULAR_STARCAST_9",
"description": "Cellular noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "CELLULAR_STARCAST_12",
"description": "Cellular noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "CELLULAR_BILINEAR_STARCAST_3",
"description": "Cellular noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "CELLULAR_BILINEAR_STARCAST_6",
"description": "Cellular noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "CELLULAR_BILINEAR_STARCAST_9",
"description": "Cellular noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "CELLULAR_BILINEAR_STARCAST_12",
"description": "Cellular noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "CELLULAR_HERMITE_STARCAST_3",
"description": "Cellular noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "CELLULAR_HERMITE_STARCAST_6",
"description": "Cellular noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "CELLULAR_HERMITE_STARCAST_9",
"description": "Cellular noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "CELLULAR_HERMITE_STARCAST_12",
"description": "Cellular noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "CELLULAR_BILINEAR",
"description": "Cellular noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "CELLULAR_BICUBIC",
"description": "Cellular noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "CELLULAR_HERMITE",
"description": "Cellular noise creates the same noise level for cells, changes noise level on cell borders."
},
{
"const": "NOWHERE",
"description": "Classic German Engineering"
},
{
"const": "NOWHERE_CELLULAR",
"description": "Classic German Engineering"
},
{
"const": "NOWHERE_CLOVER",
"description": "Classic German Engineering"
},
{
"const": "NOWHERE_SIMPLEX",
"description": "Classic German Engineering"
},
{
"const": "NOWHERE_GLOB",
"description": "Classic German Engineering"
},
{
"const": "NOWHERE_VASCULAR",
"description": "Classic German Engineering"
},
{
"const": "NOWHERE_CUBIC",
"description": "Classic German Engineering"
},
{
"const": "NOWHERE_SUPERFRACTAL",
"description": "Classic German Engineering"
},
{
"const": "NOWHERE_FRACTAL",
"description": "Classic German Engineering"
},
{
"const": "IRIS_DOUBLE",
"description": "Wispy Perlin-looking simplex noise. The 'iris' style noise."
},
{
"const": "IRIS_THICK",
"description": "Wispy Perlin-looking simplex noise. The 'iris' style noise."
},
{
"const": "IRIS_HALF",
"description": "Wispy Perlin-looking simplex noise. The 'iris' style noise."
},
{
"const": "SIMPLEX",
"description": "Basic, Smooth & Fast Simplex noise."
},
{
"const": "FRACTAL_SMOKE",
"description": "Very Detailed smoke using simplex fractured with fractal billow simplex at high octaves."
},
{
"const": "VASCULAR_THIN",
"description": "Thinner Veins."
},
{
"const": "SIMPLEX_CELLS",
"description": "Cells of simplex noise"
},
{
"const": "SIMPLEX_VASCULAR",
"description": "Veins of simplex noise"
},
{
"const": "FRACTAL_WATER",
"description": "Very Detailed fluid using simplex fractured with fractal billow simplex at high octaves."
},
{
"const": "PERLIN",
"description": "Perlin. Like simplex but more natural"
},
{
"const": "PERLIN_IRIS",
"description": "Perlin. Like simplex but more natural"
},
{
"const": "PERLIN_IRIS_HALF",
"description": "Perlin. Like simplex but more natural"
},
{
"const": "PERLIN_IRIS_DOUBLE",
"description": "Perlin. Like simplex but more natural"
},
{
"const": "PERLIN_IRIS_THICK",
"description": "Perlin. Like simplex but more natural"
},
{
"const": "FRACTAL_BILLOW_PERLIN",
"description": "Billow Fractal Perlin Noise."
},
{
"const": "BIOCTAVE_FRACTAL_BILLOW_PERLIN",
"description": "Billow Fractal Perlin Noise. 2 Octaves"
},
{
"const": "FRACTAL_BILLOW_SIMPLEX",
"description": "Billow Fractal Simplex Noise. Single octave."
},
{
"const": "FRACTAL_FBM_SIMPLEX",
"description": "FBM Fractal Simplex Noise. Single octave."
},
{
"const": "FRACTAL_BILLOW_IRIS",
"description": "Billow Fractal Iris Noise. Single octave."
},
{
"const": "FRACTAL_FBM_IRIS",
"description": "FBM Fractal Iris Noise. Single octave."
},
{
"const": "FRACTAL_BILLOW_IRIS_HALF",
"description": "Billow Fractal Iris Noise. Single octave."
},
{
"const": "FRACTAL_FBM_IRIS_HALF",
"description": "FBM Fractal Iris Noise. Single octave."
},
{
"const": "FRACTAL_BILLOW_IRIS_THICK",
"description": "Billow Fractal Iris Noise. Single octave."
},
{
"const": "FRACTAL_FBM_IRIS_THICK",
"description": "FBM Fractal Iris Noise. Single octave."
},
{
"const": "FRACTAL_RM_SIMPLEX",
"description": "Rigid Multi Fractal Simplex Noise. Single octave."
},
{
"const": "BIOCTAVE_FRACTAL_BILLOW_SIMPLEX",
"description": "Billow Fractal Simplex Noise. 2 octaves."
},
{
"const": "BIOCTAVE_FRACTAL_FBM_SIMPLEX",
"description": "FBM Fractal Simplex Noise. 2 octaves."
},
{
"const": "BIOCTAVE_FRACTAL_RM_SIMPLEX",
"description": "Rigid Multi Fractal Simplex Noise. 2 octaves."
},
{
"const": "TRIOCTAVE_FRACTAL_RM_SIMPLEX",
"description": "Rigid Multi Fractal Simplex Noise. 3 octaves."
},
{
"const": "TRIOCTAVE_FRACTAL_BILLOW_SIMPLEX",
"description": "Billow Fractal Simplex Noise. 3 octaves."
},
{
"const": "TRIOCTAVE_FRACTAL_FBM_SIMPLEX",
"description": "FBM Fractal Simplex Noise. 3 octaves."
},
{
"const": "QUADOCTAVE_FRACTAL_RM_SIMPLEX",
"description": "Rigid Multi Fractal Simplex Noise. 4 octaves."
},
{
"const": "QUADOCTAVE_FRACTAL_BILLOW_SIMPLEX",
"description": "Billow Fractal Simplex Noise. 4 octaves."
},
{
"const": "QUADOCTAVE_FRACTAL_FBM_SIMPLEX",
"description": "FBM Fractal Simplex Noise. 4 octaves."
},
{
"const": "QUINTOCTAVE_FRACTAL_RM_SIMPLEX",
"description": "Rigid Multi Fractal Simplex Noise. 5 octaves."
},
{
"const": "QUINTOCTAVE_FRACTAL_BILLOW_SIMPLEX",
"description": "Billow Fractal Simplex Noise. 5 octaves."
},
{
"const": "QUINTOCTAVE_FRACTAL_FBM_SIMPLEX",
"description": "FBM Fractal Simplex Noise. 5 octaves."
},
{
"const": "SEXOCTAVE_FRACTAL_RM_SIMPLEX",
"description": "Rigid Multi Fractal Simplex Noise. 6 octaves."
},
{
"const": "SEXOCTAVE_FRACTAL_BILLOW_SIMPLEX",
"description": "Billow Fractal Simplex Noise. 6 octaves."
},
{
"const": "SEXOCTAVE_FRACTAL_FBM_SIMPLEX",
"description": "FBM Fractal Simplex Noise. 6 octaves."
},
{
"const": "SEPTOCTAVE_FRACTAL_RM_SIMPLEX",
"description": "Rigid Multi Fractal Simplex Noise. 7 octaves."
},
{
"const": "SEPTOCTAVE_FRACTAL_BILLOW_SIMPLEX",
"description": "Billow Fractal Simplex Noise. 7 octaves."
},
{
"const": "SEPTOCTAVE_FRACTAL_FBM_SIMPLEX",
"description": "FBM Fractal Simplex Noise. 7 octaves."
},
{
"const": "OCTOCTAVE_FRACTAL_RM_SIMPLEX",
"description": "Rigid Multi Fractal Simplex Noise. 8 octaves."
},
{
"const": "OCTOCTAVE_FRACTAL_BILLOW_SIMPLEX",
"description": "Billow Fractal Simplex Noise. 8 octaves."
},
{
"const": "OCTOCTAVE_FRACTAL_FBM_SIMPLEX",
"description": "FBM Fractal Simplex Noise. 8 octaves."
},
{
"const": "NONOCTAVE_FRACTAL_RM_SIMPLEX",
"description": "Rigid Multi Fractal Simplex Noise. 9 octaves."
},
{
"const": "NONOCTAVE_FRACTAL_BILLOW_SIMPLEX",
"description": "Billow Fractal Simplex Noise. 9 octaves."
},
{
"const": "NONOCTAVE_FRACTAL_FBM_SIMPLEX",
"description": "FBM Fractal Simplex Noise. 9 octaves."
},
{
"const": "VIGOCTAVE_FRACTAL_RM_SIMPLEX",
"description": "Rigid Multi Fractal Simplex Noise. 10 octaves."
},
{
"const": "VIGOCTAVE_FRACTAL_BILLOW_SIMPLEX",
"description": "Billow Fractal Simplex Noise. 10 octaves."
},
{
"const": "VIGOCTAVE_FRACTAL_FBM_SIMPLEX",
"description": "FBM Fractal Simplex Noise. 10 octaves."
},
{
"const": "BIOCTAVE_SIMPLEX",
"description": "Basic, Smooth & Fast Simplex noise. Uses 2 octaves"
},
{
"const": "TRIOCTAVE_SIMPLEX",
"description": "Basic, Smooth & Fast Simplex noise. Uses 3 octaves"
},
{
"const": "QUADOCTAVE_SIMPLEX",
"description": "Basic, Smooth & Fast Simplex noise. Uses 4 octaves"
},
{
"const": "QUINTOCTAVE_SIMPLEX",
"description": "Basic, Smooth & Fast Simplex noise. Uses 5 octaves"
},
{
"const": "SEXOCTAVE_SIMPLEX",
"description": "Basic, Smooth & Fast Simplex noise. Uses 6 octaves"
},
{
"const": "SEPTOCTAVE_SIMPLEX",
"description": "Basic, Smooth & Fast Simplex noise. Uses 7 octaves"
},
{
"const": "OCTOCTAVE_SIMPLEX",
"description": "Basic, Smooth & Fast Simplex noise. Uses 8 octaves"
},
{
"const": "NONOCTAVE_SIMPLEX",
"description": "Basic, Smooth & Fast Simplex noise. Uses 9 octaves"
},
{
"const": "VIGOCTAVE_SIMPLEX",
"description": "Basic, Smooth & Fast Simplex noise. Uses 10 octaves"
},
{
"const": "GLOB",
"description": "Glob noise is like cellular, but with globs..."
},
{
"const": "GLOB_IRIS",
"description": "Glob noise is like cellular, but with globs..."
},
{
"const": "GLOB_IRIS_HALF",
"description": "Glob noise is like cellular, but with globs..."
},
{
"const": "GLOB_IRIS_DOUBLE",
"description": "Glob noise is like cellular, but with globs..."
},
{
"const": "GLOB_IRIS_THICK",
"description": "Glob noise is like cellular, but with globs..."
},
{
"const": "CUBIC",
"description": "Cubic Noise"
},
{
"const": "FRACTAL_CUBIC",
"description": "Fractal Cubic Noise"
},
{
"const": "FRACTAL_CUBIC_IRIS",
"description": "Fractal Cubic Noise With Iris Swirls"
},
{
"const": "FRACTAL_CUBIC_IRIS_THICK",
"description": "Fractal Cubic Noise With Iris Swirls"
},
{
"const": "FRACTAL_CUBIC_IRIS_HALF",
"description": "Fractal Cubic Noise With Iris Swirls"
},
{
"const": "FRACTAL_CUBIC_IRIS_DOUBLE",
"description": "Fractal Cubic Noise With Iris Swirls"
},
{
"const": "BIOCTAVE_FRACTAL_CUBIC",
"description": "Fractal Cubic Noise, 2 Octaves"
},
{
"const": "TRIOCTAVE_FRACTAL_CUBIC",
"description": "Fractal Cubic Noise, 3 Octaves"
},
{
"const": "QUADOCTAVE_FRACTAL_CUBIC",
"description": "Fractal Cubic Noise, 4 Octaves"
},
{
"const": "CUBIC_IRIS",
"description": "Cubic Noise"
},
{
"const": "CUBIC_IRIS_HALF",
"description": "Cubic Noise"
},
{
"const": "CUBIC_IRIS_DOUBLE",
"description": "Cubic Noise"
},
{
"const": "CUBIC_IRIS_THICK",
"description": "Cubic Noise"
},
{
"const": "CELLULAR_IRIS",
"description": "Cellular noise creates the same noise level for cells, changes noise level on cell borders. Cells are distorted using Iris styled wispy noise."
},
{
"const": "CELLULAR_IRIS_THICK",
"description": "Cellular noise creates the same noise level for cells, changes noise level on cell borders. Cells are distorted using Iris styled wispy noise."
},
{
"const": "CELLULAR_IRIS_DOUBLE",
"description": "Cellular noise creates the same noise level for cells, changes noise level on cell borders. Cells are distorted using Iris styled wispy noise."
},
{
"const": "CELLULAR_IRIS_HALF",
"description": "Cellular noise creates the same noise level for cells, changes noise level on cell borders. Cells are distorted using Iris styled wispy noise."
},
{
"const": "CELLULAR_HEIGHT",
"description": "Inverse of vascular, height gets to 1.0 as it approaches the center of a cell"
},
{
"const": "CELLULAR_HEIGHT_IRIS",
"description": "Inverse of vascular, height gets to 1.0 as it approaches the center of a cell, using the iris style."
},
{
"const": "CELLULAR_HEIGHT_IRIS_DOUBLE",
"description": "Inverse of vascular, height gets to 1.0 as it approaches the center of a cell, using the iris style."
},
{
"const": "CELLULAR_HEIGHT_IRIS_THICK",
"description": "Inverse of vascular, height gets to 1.0 as it approaches the center of a cell, using the iris style."
},
{
"const": "CELLULAR_HEIGHT_IRIS_HALF",
"description": "Inverse of vascular, height gets to 1.0 as it approaches the center of a cell, using the iris style."
},
{
"const": "VASCULAR_IRIS",
"description": "Vascular noise gets higher as the position nears a cell border. Cells are distorted using Iris styled wispy noise."
},
{
"const": "VASCULAR_IRIS_DOUBLE",
"description": "Vascular noise gets higher as the position nears a cell border. Cells are distorted using Iris styled wispy noise."
},
{
"const": "VASCULAR_IRIS_THICK",
"description": "Vascular noise gets higher as the position nears a cell border. Cells are distorted using Iris styled wispy noise."
},
{
"const": "VASCULAR_IRIS_HALF",
"description": "Vascular noise gets higher as the position nears a cell border. Cells are distorted using Iris styled wispy noise."
}
]},
"obj-com-volmit-iris-engine-object-irisblockdrops": {"anyOf": [
{
"description": "Represents a block drop list",
"type": "object",
"properties": {
"blocks": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisblockdata"},
"description": "blocks\nThe blocks that drop loot\n \nList of BlockDatas (Objects)\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list."
},
"exactBlocks": {
"type": "boolean",
"description": "exactBlocks\nIf exact blocks is set to true, minecraft:barrel[axis=x] will only drop for that axis. When exact is false (default) any barrel will drop the defined drops.\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
},
"drops": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisloot"},
"description": "drops\nAdd in specific items to drop\n \nList of Loots (Objects)\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list."
},
"skipParents": {
"type": "boolean",
"description": "skipParents\nIf this is in a biome, setting skipParents to true will ignore the drops in the region and dimension for this block type. The default (false) will allow all three nodes to fire and add to a list of drops.\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
},
"replaceVanillaDrops": {
"type": "boolean",
"description": "replaceVanillaDrops\nRemoves the default vanilla block drops and only drops the given items & any parent loot tables specified for this block type.\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
}
}
},
{"type": "string"}
]},
"obj-com-volmit-iris-engine-object-irisblockdata": {
"description": "Represents Block Data",
"type": "object",
"properties": {
"preprocessors": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/erzscripts"},
"description": "preprocessors\nPreprocess this object in-memory when it's loaded, run scripts using the variable 'Iris.getPreprocessorObject()' and modify properties about this object before it's used.\n \nList<Script>\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list.\nMust be a valid Script (use ctrl+space for auto complete!)"
},
"block": {
"type": "string",
"$ref": "#/definitions/enum-block-type",
"description": "block\nThe block to use\n \nBlock Type\n\n \n* Default Value is air\nMust be a valid Block Type (use ctrl+space for auto complete!)"
},
"debug": {
"type": "boolean",
"description": "debug\nDebug this block by printing it to the console when it's used. Must have debug turned on in settings.\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
},
"weight": {
"type": "integer",
"minimum": 1,
"maximum": 1000,
"description": "weight\nThe weight is used when this block data is inside of a list of blockdata. A weight of two is just as if you placed two of the same block data values in the same list making it more common when randomly picked.\n \nInteger\n\n \n* Default Value is 1\n* Minimum allowed is 1\n* Maximum allowed is 1000"
},
"backup": {
"type": "object",
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisblockdata",
"description": "backup\nIf the block cannot be created on this version, Iris will attempt to use this backup block data instead.\n \nBlockData (Object)\nRepresents Block Data"
},
"data": {
"type": "object",
"$ref": "#/definitions/obj-com-volmit-iris-util-collection-kmap",
"description": "data\nOptional properties for this block data such as 'waterlogged': true\n \nKMap (Object)\n\n \n* Default Value is a default object (create this object to see default properties)"
}
}
},
"oneof-enum-com-volmit-iris-engine-object-carvingmode": {"oneOf": [
{
"const": "SURFACE_ONLY",
"description": "Only place this object on surfaces (NOT under carvings)"
},
{
"const": "CARVING_ONLY",
"description": "Only place this object under carvings (NOT on the surface)"
},
{
"const": "ANYWHERE",
"description": "This object can place anywhere"
}
]},
"enum-org-bukkit-treetype": {"enum": [
"TREE",
"BIG_TREE",
"REDWOOD",
"TALL_REDWOOD",
"BIRCH",
"JUNGLE",
"SMALL_JUNGLE",
"COCOA_TREE",
"JUNGLE_BUSH",
"RED_MUSHROOM",
"BROWN_MUSHROOM",
"SWAMP",
"ACACIA",
"DARK_OAK",
"MEGA_REDWOOD",
"TALL_BIRCH",
"CHORUS_PLANT",
"CRIMSON_FUNGUS",
"WARPED_FUNGUS",
"AZALEA"
]},
"enum-org-bukkit-particle": {"enum": [
"EXPLOSION_NORMAL",
"EXPLOSION_LARGE",
"EXPLOSION_HUGE",
"FIREWORKS_SPARK",
"WATER_BUBBLE",
"WATER_SPLASH",
"WATER_WAKE",
"SUSPENDED",
"SUSPENDED_DEPTH",
"CRIT",
"CRIT_MAGIC",
"SMOKE_NORMAL",
"SMOKE_LARGE",
"SPELL",
"SPELL_INSTANT",
"SPELL_MOB",
"SPELL_MOB_AMBIENT",
"SPELL_WITCH",
"DRIP_WATER",
"DRIP_LAVA",
"VILLAGER_ANGRY",
"VILLAGER_HAPPY",
"TOWN_AURA",
"NOTE",
"PORTAL",
"ENCHANTMENT_TABLE",
"FLAME",
"LAVA",
"CLOUD",
"REDSTONE",
"SNOWBALL",
"SNOW_SHOVEL",
"SLIME",
"HEART",
"BARRIER",
"ITEM_CRACK",
"BLOCK_CRACK",
"BLOCK_DUST",
"WATER_DROP",
"MOB_APPEARANCE",
"DRAGON_BREATH",
"END_ROD",
"DAMAGE_INDICATOR",
"SWEEP_ATTACK",
"FALLING_DUST",
"TOTEM",
"SPIT",
"SQUID_INK",
"BUBBLE_POP",
"CURRENT_DOWN",
"BUBBLE_COLUMN_UP",
"NAUTILUS",
"DOLPHIN",
"SNEEZE",
"CAMPFIRE_COSY_SMOKE",
"CAMPFIRE_SIGNAL_SMOKE",
"COMPOSTER",
"FLASH",
"FALLING_LAVA",
"LANDING_LAVA",
"FALLING_WATER",
"DRIPPING_HONEY",
"FALLING_HONEY",
"LANDING_HONEY",
"FALLING_NECTAR",
"SOUL_FIRE_FLAME",
"ASH",
"CRIMSON_SPORE",
"WARPED_SPORE",
"SOUL",
"DRIPPING_OBSIDIAN_TEAR",
"FALLING_OBSIDIAN_TEAR",
"LANDING_OBSIDIAN_TEAR",
"REVERSE_PORTAL",
"WHITE_ASH",
"LIGHT",
"DUST_COLOR_TRANSITION",
"VIBRATION",
"FALLING_SPORE_BLOSSOM",
"SPORE_BLOSSOM_AIR",
"SMALL_FLAME",
"SNOWFLAKE",
"DRIPPING_DRIPSTONE_LAVA",
"FALLING_DRIPSTONE_LAVA",
"DRIPPING_DRIPSTONE_WATER",
"FALLING_DRIPSTONE_WATER",
"GLOW_SQUID_INK",
"GLOW",
"WAX_ON",
"WAX_OFF",
"ELECTRIC_SPARK",
"SCRAPE",
"LEGACY_BLOCK_CRACK",
"LEGACY_BLOCK_DUST",
"LEGACY_FALLING_DUST"
]},
"enum-snippet-object-limit": {"enum": []},
"enum-snippet-feature": {"enum": []},
"erzbiomes": {"enum": [
"mountain/hills",
"swamp/sea/ocean",
"mushroom/forest",
"mountain/middle",
"ocean/shore/beach",
"tropical/beach",
"savanna/savanna",
"tropical/rainforest-island",
"mountain/shore/beach",
"mushroom/plains",
"temperate/highlands",
"mesa/plateau",
"tropical/highlands",
"tundra/forest",
"ocean/warm",
"swamp/denmyre",
"hot/shore/beach",
"temperate/longtree-forest",
"tropical/sea/river-steep",
"tropical/volcanoes-lava",
"mushroom/shore/beach",
"temperate/lush-plains-yellow",
"temperate/flower-forest",
"tundra/taiga",
"frozen/sea/ocean",
"temperate/osaka-red-forest",
"mesa/cliffs",
"tundra/autumn",
"mushroom/crimson-forest",
"util/ruined_portals",
"mesa/valleys",
"tropical/sea/ocean",
"hot/shore/beach-grass",
"mesa/green",
"mesa/shore/beach",
"mountain/sea/river-soft",
"subterrestrial-palette/swamp-cavern",
"tropical/sea/coral-ocean-cliffs",
"savanna/cliff",
"tundra/forest-cliffs",
"mountain/plains",
"temperate/sea/ocean-deep",
"temperate/lush-plains",
"temperate/shore/beach",
"frozen/vander",
"mountain/cliffs",
"frozen/spruce-plains",
"savanna/forest",
"subterrestrial-palette/granite-cavern",
"tropical/rainforest",
"subterrestrial-palette/red-sandstone-cavern",
"hot/desert-dunes-red",
"tundra/magic-forest",
"subterrestrial-palette/sandstone-cavern",
"hot/sea/ocean-cliffs",
"tundra/mountains",
"tropical/mountain",
"tropical/mountain-plains",
"tropical/volcanoes",
"temperate/sea/ocean",
"tundra/bonsai-forest",
"temperate/shore/oak-beach",
"mesa/dark",
"tundra/shore/beach",
"hot/sea/ocean",
"mesa/blue",
"subterrestrial-palette/calcite-cavern",
"swamp/shore/beach",
"mesa/yellow",
"subterrestrial-palette/deepslate-cavern",
"tropical/beach-charred",
"tundra/shore/beach-stone",
"frozen/mountains",
"swamp/marsh-rotten",
"frozen/sea/river",
"savanna/shore/beach",
"hot/mountain-plains",
"tundra/mountains-cliffs",
"mountain/forest",
"tropical/mountain-extreme",
"subterrestrial-palette/rocky-cavern",
"temperate/stranged-plains",
"tundra/sea/river-rocky",
"mushroom/sea/ocean",
"tropical/plains",
"tropical/jungle-denmyre",
"frozen/sea/frozen-parent-river",
"subterrestrial-palette/drip-cavern-minimal",
"frozen/shore/beach",
"mushroom/sea/lake",
"tundra/sea/river",
"temperate/birch-denmyre",
"tropical/mountain-water",
"frozen/pine-hills",
"tropical/beach-bamboo",
"ocean/deep",
"frozen/plains",
"frozen/redwood-forest",
"subterrestrial-palette/amethyst-cavern",
"mesa/plateau-dirt-high",
"mesa/red",
"mountain/plain-hills",
"subterrestrial-palette/drip-cavern",
"swamp/marsh",
"temperate/island",
"tundra/redwood-cliffs",
"tropical/rainforest-wicked",
"temperate/lush-plains-red",
"temperate/oak-forest",
"temperate/birch-forest",
"tropical/volcanic-plains",
"tropical/plains-hills",
"hot/desert-dunes",
"subterrestrial-palette/jungle-cavern",
"subterrestrial-palette/volcanic-cavern",
"mountain/forest-hills",
"temperate/meadows",
"swamp/cambian-drift",
"tropical/rainforest-hills",
"subterrestrial-palette/ice-ravine",
"tropical/rainforest-wicked-child",
"swamp/sea/lake",
"swamp/roofed-wayward",
"temperate/birch-thin",
"hot/mountain-middle",
"mountain/mountain",
"subterrestrial-palette/ice-cavern",
"frozen/sea/frozen-river-ice",
"temperate/plateau",
"tropical/sea/river-soft",
"mesa/plateau-high",
"savanna/plateau",
"frozen/pines",
"temperate/combo-forest",
"frozen/mountain",
"temperate/sea/river",
"mountain/sea/river",
"hot/mountain",
"mesa/plateau-dirt",
"mushroom/forest-hills",
"hot/mountain-cliffs",
"temperate/osaka-violet-forest",
"hot/oasis",
"frozen/peak",
"tropical/island-beach",
"temperate/plains",
"mushroom/warped-forest",
"subterrestrial-palette/mixed-sandstone-cavern",
"hot/sea/river",
"temperate/wilds",
"frozen/hills",
"swamp/willow-forest",
"frozen/pine-plains",
"tropical/wilds",
"tundra/ether",
"mesa/mesa",
"tropical/mountain-middle",
"tundra/sea/lake",
"frozen/mountain-cliffs",
"swamp/sea/ocean-tree",
"tundra/sequia-redwoods",
"mountain/main",
"ocean/ocean",
"savanna/acacia-denmyre",
"swamp/roofed-forest",
"tundra/spruce-denmyre",
"mesa/sea/river",
"subterrestrial-palette/ice-cavern-minimal",
"tropical/submerged-volcanic",
"frozen/spruce-hills",
"temperate/oak-denmyre",
"tundra/redwood-forest",
"ocean/warm-bottom",
"tropical/bamboo-forest",
"frozen/mountain-middle",
"tropical/sea/coral-ocean"
]},
"obj-com-volmit-iris-engine-object-irisdepositgenerator": {"anyOf": [
{
"description": "Creates ore & other block deposits underground",
"type": "object",
"properties": {
"minHeight": {
"type": "integer",
"minimum": 0,
"maximum": 256,
"description": "minHeight\nThe minimum height this deposit can generate at\n \nInteger\n\n \n* Default Value is 7\n* Minimum allowed is 0\n* Maximum allowed is 256"
},
"maxHeight": {
"type": "integer",
"minimum": 0,
"maximum": 256,
"description": "maxHeight\nThe maximum height this deposit can generate at\n \nInteger\n\n \n* Default Value is 55\n* Minimum allowed is 0\n* Maximum allowed is 256"
},
"minSize": {
"type": "integer",
"minimum": 1,
"maximum": 8192,
"description": "minSize\nThe minimum amount of deposit blocks per clump\n \nInteger\n\n \n* Default Value is 3\n* Minimum allowed is 1\n* Maximum allowed is 8192"
},
"maxSize": {
"type": "integer",
"minimum": 1,
"maximum": 8192,
"description": "maxSize\nThe maximum amount of deposit blocks per clump\n \nInteger\n\n \n* Default Value is 64\n* Minimum allowed is 1\n* Maximum allowed is 8192"
},
"maxPerChunk": {
"type": "integer",
"minimum": 1,
"maximum": 128,
"description": "maxPerChunk\nThe maximum amount of clumps per chunk\n \nInteger\n\n \n* Default Value is 3\n* Minimum allowed is 1\n* Maximum allowed is 128"
},
"minPerChunk": {
"type": "integer",
"minimum": 0,
"maximum": 128,
"description": "minPerChunk\nThe minimum amount of clumps per chunk\n \nInteger\n\n \n* Default Value is 1\n* Minimum allowed is 0\n* Maximum allowed is 128"
},
"palette": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisblockdata"},
"description": "palette\nThe palette of blocks to be used in this deposit generator\n \nList of BlockDatas (Objects)\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list."
},
"varience": {
"type": "integer",
"minimum": 1,
"maximum": 64,
"description": "varience\nOre varience is how many different objects clumps iris will create\n \nInteger\n\n \n* Default Value is 3\n* Minimum allowed is 1\n* Maximum allowed is 64"
}
}
},
{"type": "string"}
]},
"enum-snippet-carving": {"enum": []},
"erzexpressions": {"enum": []},
"obj-com-volmit-iris-engine-object-irisattributemodifier": {"anyOf": [
{
"description": "Represents an attribute modifier for an item or an entity. This allows you to create modifications to basic game attributes such as MAX_HEALTH or ARMOR_VALUE.",
"type": "object",
"properties": {
"attribute": {
"type": "string",
"$ref": "#/definitions/enum-org-bukkit-attribute-attribute",
"description": "attribute\nThe Attribute type. This type is pulled from the game attributes. Zombie & Horse attributes will not work on non-zombie/horse entities.\nUsing an attribute on an item will have affects when held, or worn. There is no way to specify further granularity as the game picks this depending on the item type.\n \nAttribute\n\nMust be a valid Attribute (use ctrl+space for auto complete!)"
},
"name": {
"type": "string",
"minLength": 2,
"description": "name\nThe Attribute Name is used internally only for the game. This value should be unique to all other attributes applied to this item/entity. It is not shown in game.\n \nText\n\n \n* Default Value is \n* Minimum Length allowed is 2"
},
"operation": {
"type": "string",
"$ref": "#/definitions/enum-org-bukkit-attribute-attributemodifier-operation",
"description": "operation\nThe application operation (add number is default). Add Number adds to the default value. \nAdd scalar_1 will multiply by 1 for example if the health is 20 and you multiply_scalar_1 by 0.5, the health will result in 30, not 10. Use negative values to achieve that.\n \nOperation\n\n \n* Default Value is a default object (create this object to see default properties)\nMust be a valid Operation (use ctrl+space for auto complete!)"
},
"minAmount": {
"type": "number",
"description": "minAmount\nMinimum amount for this modifier. Iris randomly chooses an amount, this is the minimum it can choose randomly for this attribute.\n \nNumber\n\n \n* Default Value is 1.0"
},
"maxAmount": {
"type": "number",
"description": "maxAmount\nMaximum amount for this modifier Iris randomly chooses an amount, this is the maximum it can choose randomly for this attribute.\n \nNumber\n\n \n* Default Value is 1.0"
},
"chance": {
"type": "number",
"minimum": 0,
"maximum": 1,
"description": "chance\nThe chance that this attribute is applied (0 to 1). If the chance is 0.5 (50%), then Iris will only apply this attribute 50% of the time.\n \nNumber\n\n \n* Default Value is 1.0\n* Minimum allowed is 0.0\n* Maximum allowed is 1.0"
}
}
},
{"type": "string"}
]},
"erzjigsaw-structures": {"enum": [
"mush-huts",
"village-hot",
"village-tundra",
"desert-pyramid",
"jungle-pyramid",
"village-snowy",
"pillager_outpost",
"village-jap",
"igloo",
"murky_stronghold",
"village-temperate",
"village-savanna",
"stronghold",
"mansion"
]},
"enum-org-bukkit-sound": {"enum": [
"AMBIENT_BASALT_DELTAS_ADDITIONS",
"AMBIENT_BASALT_DELTAS_LOOP",
"AMBIENT_BASALT_DELTAS_MOOD",
"AMBIENT_CAVE",
"AMBIENT_CRIMSON_FOREST_ADDITIONS",
"AMBIENT_CRIMSON_FOREST_LOOP",
"AMBIENT_CRIMSON_FOREST_MOOD",
"AMBIENT_NETHER_WASTES_ADDITIONS",
"AMBIENT_NETHER_WASTES_LOOP",
"AMBIENT_NETHER_WASTES_MOOD",
"AMBIENT_SOUL_SAND_VALLEY_ADDITIONS",
"AMBIENT_SOUL_SAND_VALLEY_LOOP",
"AMBIENT_SOUL_SAND_VALLEY_MOOD",
"AMBIENT_UNDERWATER_ENTER",
"AMBIENT_UNDERWATER_EXIT",
"AMBIENT_UNDERWATER_LOOP",
"AMBIENT_UNDERWATER_LOOP_ADDITIONS",
"AMBIENT_UNDERWATER_LOOP_ADDITIONS_RARE",
"AMBIENT_UNDERWATER_LOOP_ADDITIONS_ULTRA_RARE",
"AMBIENT_WARPED_FOREST_ADDITIONS",
"AMBIENT_WARPED_FOREST_LOOP",
"AMBIENT_WARPED_FOREST_MOOD",
"BLOCK_AMETHYST_BLOCK_BREAK",
"BLOCK_AMETHYST_BLOCK_CHIME",
"BLOCK_AMETHYST_BLOCK_FALL",
"BLOCK_AMETHYST_BLOCK_HIT",
"BLOCK_AMETHYST_BLOCK_PLACE",
"BLOCK_AMETHYST_BLOCK_STEP",
"BLOCK_AMETHYST_CLUSTER_BREAK",
"BLOCK_AMETHYST_CLUSTER_FALL",
"BLOCK_AMETHYST_CLUSTER_HIT",
"BLOCK_AMETHYST_CLUSTER_PLACE",
"BLOCK_AMETHYST_CLUSTER_STEP",
"BLOCK_ANCIENT_DEBRIS_BREAK",
"BLOCK_ANCIENT_DEBRIS_FALL",
"BLOCK_ANCIENT_DEBRIS_HIT",
"BLOCK_ANCIENT_DEBRIS_PLACE",
"BLOCK_ANCIENT_DEBRIS_STEP",
"BLOCK_ANVIL_BREAK",
"BLOCK_ANVIL_DESTROY",
"BLOCK_ANVIL_FALL",
"BLOCK_ANVIL_HIT",
"BLOCK_ANVIL_LAND",
"BLOCK_ANVIL_PLACE",
"BLOCK_ANVIL_STEP",
"BLOCK_ANVIL_USE",
"BLOCK_AZALEA_BREAK",
"BLOCK_AZALEA_FALL",
"BLOCK_AZALEA_HIT",
"BLOCK_AZALEA_LEAVES_BREAK",
"BLOCK_AZALEA_LEAVES_FALL",
"BLOCK_AZALEA_LEAVES_HIT",
"BLOCK_AZALEA_LEAVES_PLACE",
"BLOCK_AZALEA_LEAVES_STEP",
"BLOCK_AZALEA_PLACE",
"BLOCK_AZALEA_STEP",
"BLOCK_BAMBOO_BREAK",
"BLOCK_BAMBOO_FALL",
"BLOCK_BAMBOO_HIT",
"BLOCK_BAMBOO_PLACE",
"BLOCK_BAMBOO_SAPLING_BREAK",
"BLOCK_BAMBOO_SAPLING_HIT",
"BLOCK_BAMBOO_SAPLING_PLACE",
"BLOCK_BAMBOO_STEP",
"BLOCK_BARREL_CLOSE",
"BLOCK_BARREL_OPEN",
"BLOCK_BASALT_BREAK",
"BLOCK_BASALT_FALL",
"BLOCK_BASALT_HIT",
"BLOCK_BASALT_PLACE",
"BLOCK_BASALT_STEP",
"BLOCK_BEACON_ACTIVATE",
"BLOCK_BEACON_AMBIENT",
"BLOCK_BEACON_DEACTIVATE",
"BLOCK_BEACON_POWER_SELECT",
"BLOCK_BEEHIVE_DRIP",
"BLOCK_BEEHIVE_ENTER",
"BLOCK_BEEHIVE_EXIT",
"BLOCK_BEEHIVE_SHEAR",
"BLOCK_BEEHIVE_WORK",
"BLOCK_BELL_RESONATE",
"BLOCK_BELL_USE",
"BLOCK_BIG_DRIPLEAF_BREAK",
"BLOCK_BIG_DRIPLEAF_FALL",
"BLOCK_BIG_DRIPLEAF_HIT",
"BLOCK_BIG_DRIPLEAF_PLACE",
"BLOCK_BIG_DRIPLEAF_STEP",
"BLOCK_BIG_DRIPLEAF_TILT_DOWN",
"BLOCK_BIG_DRIPLEAF_TILT_UP",
"BLOCK_BLASTFURNACE_FIRE_CRACKLE",
"BLOCK_BONE_BLOCK_BREAK",
"BLOCK_BONE_BLOCK_FALL",
"BLOCK_BONE_BLOCK_HIT",
"BLOCK_BONE_BLOCK_PLACE",
"BLOCK_BONE_BLOCK_STEP",
"BLOCK_BREWING_STAND_BREW",
"BLOCK_BUBBLE_COLUMN_BUBBLE_POP",
"BLOCK_BUBBLE_COLUMN_UPWARDS_AMBIENT",
"BLOCK_BUBBLE_COLUMN_UPWARDS_INSIDE",
"BLOCK_BUBBLE_COLUMN_WHIRLPOOL_AMBIENT",
"BLOCK_BUBBLE_COLUMN_WHIRLPOOL_INSIDE",
"BLOCK_CAKE_ADD_CANDLE",
"BLOCK_CALCITE_BREAK",
"BLOCK_CALCITE_FALL",
"BLOCK_CALCITE_HIT",
"BLOCK_CALCITE_PLACE",
"BLOCK_CALCITE_STEP",
"BLOCK_CAMPFIRE_CRACKLE",
"BLOCK_CANDLE_AMBIENT",
"BLOCK_CANDLE_BREAK",
"BLOCK_CANDLE_EXTINGUISH",
"BLOCK_CANDLE_FALL",
"BLOCK_CANDLE_HIT",
"BLOCK_CANDLE_PLACE",
"BLOCK_CANDLE_STEP",
"BLOCK_CAVE_VINES_BREAK",
"BLOCK_CAVE_VINES_FALL",
"BLOCK_CAVE_VINES_HIT",
"BLOCK_CAVE_VINES_PICK_BERRIES",
"BLOCK_CAVE_VINES_PLACE",
"BLOCK_CAVE_VINES_STEP",
"BLOCK_CHAIN_BREAK",
"BLOCK_CHAIN_FALL",
"BLOCK_CHAIN_HIT",
"BLOCK_CHAIN_PLACE",
"BLOCK_CHAIN_STEP",
"BLOCK_CHEST_CLOSE",
"BLOCK_CHEST_LOCKED",
"BLOCK_CHEST_OPEN",
"BLOCK_CHORUS_FLOWER_DEATH",
"BLOCK_CHORUS_FLOWER_GROW",
"BLOCK_COMPARATOR_CLICK",
"BLOCK_COMPOSTER_EMPTY",
"BLOCK_COMPOSTER_FILL",
"BLOCK_COMPOSTER_FILL_SUCCESS",
"BLOCK_COMPOSTER_READY",
"BLOCK_CONDUIT_ACTIVATE",
"BLOCK_CONDUIT_AMBIENT",
"BLOCK_CONDUIT_AMBIENT_SHORT",
"BLOCK_CONDUIT_ATTACK_TARGET",
"BLOCK_CONDUIT_DEACTIVATE",
"BLOCK_COPPER_BREAK",
"BLOCK_COPPER_FALL",
"BLOCK_COPPER_HIT",
"BLOCK_COPPER_PLACE",
"BLOCK_COPPER_STEP",
"BLOCK_CORAL_BLOCK_BREAK",
"BLOCK_CORAL_BLOCK_FALL",
"BLOCK_CORAL_BLOCK_HIT",
"BLOCK_CORAL_BLOCK_PLACE",
"BLOCK_CORAL_BLOCK_STEP",
"BLOCK_CROP_BREAK",
"BLOCK_DEEPSLATE_BREAK",
"BLOCK_DEEPSLATE_BRICKS_BREAK",
"BLOCK_DEEPSLATE_BRICKS_FALL",
"BLOCK_DEEPSLATE_BRICKS_HIT",
"BLOCK_DEEPSLATE_BRICKS_PLACE",
"BLOCK_DEEPSLATE_BRICKS_STEP",
"BLOCK_DEEPSLATE_FALL",
"BLOCK_DEEPSLATE_HIT",
"BLOCK_DEEPSLATE_PLACE",
"BLOCK_DEEPSLATE_STEP",
"BLOCK_DEEPSLATE_TILES_BREAK",
"BLOCK_DEEPSLATE_TILES_FALL",
"BLOCK_DEEPSLATE_TILES_HIT",
"BLOCK_DEEPSLATE_TILES_PLACE",
"BLOCK_DEEPSLATE_TILES_STEP",
"BLOCK_DISPENSER_DISPENSE",
"BLOCK_DISPENSER_FAIL",
"BLOCK_DISPENSER_LAUNCH",
"BLOCK_DRIPSTONE_BLOCK_BREAK",
"BLOCK_DRIPSTONE_BLOCK_FALL",
"BLOCK_DRIPSTONE_BLOCK_HIT",
"BLOCK_DRIPSTONE_BLOCK_PLACE",
"BLOCK_DRIPSTONE_BLOCK_STEP",
"BLOCK_ENCHANTMENT_TABLE_USE",
"BLOCK_ENDER_CHEST_CLOSE",
"BLOCK_ENDER_CHEST_OPEN",
"BLOCK_END_GATEWAY_SPAWN",
"BLOCK_END_PORTAL_FRAME_FILL",
"BLOCK_END_PORTAL_SPAWN",
"BLOCK_FENCE_GATE_CLOSE",
"BLOCK_FENCE_GATE_OPEN",
"BLOCK_FIRE_AMBIENT",
"BLOCK_FIRE_EXTINGUISH",
"BLOCK_FLOWERING_AZALEA_BREAK",
"BLOCK_FLOWERING_AZALEA_FALL",
"BLOCK_FLOWERING_AZALEA_HIT",
"BLOCK_FLOWERING_AZALEA_PLACE",
"BLOCK_FLOWERING_AZALEA_STEP",
"BLOCK_FUNGUS_BREAK",
"BLOCK_FUNGUS_FALL",
"BLOCK_FUNGUS_HIT",
"BLOCK_FUNGUS_PLACE",
"BLOCK_FUNGUS_STEP",
"BLOCK_FURNACE_FIRE_CRACKLE",
"BLOCK_GILDED_BLACKSTONE_BREAK",
"BLOCK_GILDED_BLACKSTONE_FALL",
"BLOCK_GILDED_BLACKSTONE_HIT",
"BLOCK_GILDED_BLACKSTONE_PLACE",
"BLOCK_GILDED_BLACKSTONE_STEP",
"BLOCK_GLASS_BREAK",
"BLOCK_GLASS_FALL",
"BLOCK_GLASS_HIT",
"BLOCK_GLASS_PLACE",
"BLOCK_GLASS_STEP",
"BLOCK_GRASS_BREAK",
"BLOCK_GRASS_FALL",
"BLOCK_GRASS_HIT",
"BLOCK_GRASS_PLACE",
"BLOCK_GRASS_STEP",
"BLOCK_GRAVEL_BREAK",
"BLOCK_GRAVEL_FALL",
"BLOCK_GRAVEL_HIT",
"BLOCK_GRAVEL_PLACE",
"BLOCK_GRAVEL_STEP",
"BLOCK_GRINDSTONE_USE",
"BLOCK_HANGING_ROOTS_BREAK",
"BLOCK_HANGING_ROOTS_FALL",
"BLOCK_HANGING_ROOTS_HIT",
"BLOCK_HANGING_ROOTS_PLACE",
"BLOCK_HANGING_ROOTS_STEP",
"BLOCK_HONEY_BLOCK_BREAK",
"BLOCK_HONEY_BLOCK_FALL",
"BLOCK_HONEY_BLOCK_HIT",
"BLOCK_HONEY_BLOCK_PLACE",
"BLOCK_HONEY_BLOCK_SLIDE",
"BLOCK_HONEY_BLOCK_STEP",
"BLOCK_IRON_DOOR_CLOSE",
"BLOCK_IRON_DOOR_OPEN",
"BLOCK_IRON_TRAPDOOR_CLOSE",
"BLOCK_IRON_TRAPDOOR_OPEN",
"BLOCK_LADDER_BREAK",
"BLOCK_LADDER_FALL",
"BLOCK_LADDER_HIT",
"BLOCK_LADDER_PLACE",
"BLOCK_LADDER_STEP",
"BLOCK_LANTERN_BREAK",
"BLOCK_LANTERN_FALL",
"BLOCK_LANTERN_HIT",
"BLOCK_LANTERN_PLACE",
"BLOCK_LANTERN_STEP",
"BLOCK_LARGE_AMETHYST_BUD_BREAK",
"BLOCK_LARGE_AMETHYST_BUD_PLACE",
"BLOCK_LAVA_AMBIENT",
"BLOCK_LAVA_EXTINGUISH",
"BLOCK_LAVA_POP",
"BLOCK_LEVER_CLICK",
"BLOCK_LILY_PAD_PLACE",
"BLOCK_LODESTONE_BREAK",
"BLOCK_LODESTONE_FALL",
"BLOCK_LODESTONE_HIT",
"BLOCK_LODESTONE_PLACE",
"BLOCK_LODESTONE_STEP",
"BLOCK_MEDIUM_AMETHYST_BUD_BREAK",
"BLOCK_MEDIUM_AMETHYST_BUD_PLACE",
"BLOCK_METAL_BREAK",
"BLOCK_METAL_FALL",
"BLOCK_METAL_HIT",
"BLOCK_METAL_PLACE",
"BLOCK_METAL_PRESSURE_PLATE_CLICK_OFF",
"BLOCK_METAL_PRESSURE_PLATE_CLICK_ON",
"BLOCK_METAL_STEP",
"BLOCK_MOSS_BREAK",
"BLOCK_MOSS_CARPET_BREAK",
"BLOCK_MOSS_CARPET_FALL",
"BLOCK_MOSS_CARPET_HIT",
"BLOCK_MOSS_CARPET_PLACE",
"BLOCK_MOSS_CARPET_STEP",
"BLOCK_MOSS_FALL",
"BLOCK_MOSS_HIT",
"BLOCK_MOSS_PLACE",
"BLOCK_MOSS_STEP",
"BLOCK_NETHERITE_BLOCK_BREAK",
"BLOCK_NETHERITE_BLOCK_FALL",
"BLOCK_NETHERITE_BLOCK_HIT",
"BLOCK_NETHERITE_BLOCK_PLACE",
"BLOCK_NETHERITE_BLOCK_STEP",
"BLOCK_NETHERRACK_BREAK",
"BLOCK_NETHERRACK_FALL",
"BLOCK_NETHERRACK_HIT",
"BLOCK_NETHERRACK_PLACE",
"BLOCK_NETHERRACK_STEP",
"BLOCK_NETHER_BRICKS_BREAK",
"BLOCK_NETHER_BRICKS_FALL",
"BLOCK_NETHER_BRICKS_HIT",
"BLOCK_NETHER_BRICKS_PLACE",
"BLOCK_NETHER_BRICKS_STEP",
"BLOCK_NETHER_GOLD_ORE_BREAK",
"BLOCK_NETHER_GOLD_ORE_FALL",
"BLOCK_NETHER_GOLD_ORE_HIT",
"BLOCK_NETHER_GOLD_ORE_PLACE",
"BLOCK_NETHER_GOLD_ORE_STEP",
"BLOCK_NETHER_ORE_BREAK",
"BLOCK_NETHER_ORE_FALL",
"BLOCK_NETHER_ORE_HIT",
"BLOCK_NETHER_ORE_PLACE",
"BLOCK_NETHER_ORE_STEP",
"BLOCK_NETHER_SPROUTS_BREAK",
"BLOCK_NETHER_SPROUTS_FALL",
"BLOCK_NETHER_SPROUTS_HIT",
"BLOCK_NETHER_SPROUTS_PLACE",
"BLOCK_NETHER_SPROUTS_STEP",
"BLOCK_NETHER_WART_BREAK",
"BLOCK_NOTE_BLOCK_BANJO",
"BLOCK_NOTE_BLOCK_BASEDRUM",
"BLOCK_NOTE_BLOCK_BASS",
"BLOCK_NOTE_BLOCK_BELL",
"BLOCK_NOTE_BLOCK_BIT",
"BLOCK_NOTE_BLOCK_CHIME",
"BLOCK_NOTE_BLOCK_COW_BELL",
"BLOCK_NOTE_BLOCK_DIDGERIDOO",
"BLOCK_NOTE_BLOCK_FLUTE",
"BLOCK_NOTE_BLOCK_GUITAR",
"BLOCK_NOTE_BLOCK_HARP",
"BLOCK_NOTE_BLOCK_HAT",
"BLOCK_NOTE_BLOCK_IRON_XYLOPHONE",
"BLOCK_NOTE_BLOCK_PLING",
"BLOCK_NOTE_BLOCK_SNARE",
"BLOCK_NOTE_BLOCK_XYLOPHONE",
"BLOCK_NYLIUM_BREAK",
"BLOCK_NYLIUM_FALL",
"BLOCK_NYLIUM_HIT",
"BLOCK_NYLIUM_PLACE",
"BLOCK_NYLIUM_STEP",
"BLOCK_PISTON_CONTRACT",
"BLOCK_PISTON_EXTEND",
"BLOCK_POINTED_DRIPSTONE_BREAK",
"BLOCK_POINTED_DRIPSTONE_DRIP_LAVA",
"BLOCK_POINTED_DRIPSTONE_DRIP_LAVA_INTO_CAULDRON",
"BLOCK_POINTED_DRIPSTONE_DRIP_WATER",
"BLOCK_POINTED_DRIPSTONE_DRIP_WATER_INTO_CAULDRON",
"BLOCK_POINTED_DRIPSTONE_FALL",
"BLOCK_POINTED_DRIPSTONE_HIT",
"BLOCK_POINTED_DRIPSTONE_LAND",
"BLOCK_POINTED_DRIPSTONE_PLACE",
"BLOCK_POINTED_DRIPSTONE_STEP",
"BLOCK_POLISHED_DEEPSLATE_BREAK",
"BLOCK_POLISHED_DEEPSLATE_FALL",
"BLOCK_POLISHED_DEEPSLATE_HIT",
"BLOCK_POLISHED_DEEPSLATE_PLACE",
"BLOCK_POLISHED_DEEPSLATE_STEP",
"BLOCK_PORTAL_AMBIENT",
"BLOCK_PORTAL_TRAVEL",
"BLOCK_PORTAL_TRIGGER",
"BLOCK_POWDER_SNOW_BREAK",
"BLOCK_POWDER_SNOW_FALL",
"BLOCK_POWDER_SNOW_HIT",
"BLOCK_POWDER_SNOW_PLACE",
"BLOCK_POWDER_SNOW_STEP",
"BLOCK_PUMPKIN_CARVE",
"BLOCK_REDSTONE_TORCH_BURNOUT",
"BLOCK_RESPAWN_ANCHOR_AMBIENT",
"BLOCK_RESPAWN_ANCHOR_CHARGE",
"BLOCK_RESPAWN_ANCHOR_DEPLETE",
"BLOCK_RESPAWN_ANCHOR_SET_SPAWN",
"BLOCK_ROOTED_DIRT_BREAK",
"BLOCK_ROOTED_DIRT_FALL",
"BLOCK_ROOTED_DIRT_HIT",
"BLOCK_ROOTED_DIRT_PLACE",
"BLOCK_ROOTED_DIRT_STEP",
"BLOCK_ROOTS_BREAK",
"BLOCK_ROOTS_FALL",
"BLOCK_ROOTS_HIT",
"BLOCK_ROOTS_PLACE",
"BLOCK_ROOTS_STEP",
"BLOCK_SAND_BREAK",
"BLOCK_SAND_FALL",
"BLOCK_SAND_HIT",
"BLOCK_SAND_PLACE",
"BLOCK_SAND_STEP",
"BLOCK_SCAFFOLDING_BREAK",
"BLOCK_SCAFFOLDING_FALL",
"BLOCK_SCAFFOLDING_HIT",
"BLOCK_SCAFFOLDING_PLACE",
"BLOCK_SCAFFOLDING_STEP",
"BLOCK_SCULK_SENSOR_BREAK",
"BLOCK_SCULK_SENSOR_CLICKING",
"BLOCK_SCULK_SENSOR_CLICKING_STOP",
"BLOCK_SCULK_SENSOR_FALL",
"BLOCK_SCULK_SENSOR_HIT",
"BLOCK_SCULK_SENSOR_PLACE",
"BLOCK_SCULK_SENSOR_STEP",
"BLOCK_SHROOMLIGHT_BREAK",
"BLOCK_SHROOMLIGHT_FALL",
"BLOCK_SHROOMLIGHT_HIT",
"BLOCK_SHROOMLIGHT_PLACE",
"BLOCK_SHROOMLIGHT_STEP",
"BLOCK_SHULKER_BOX_CLOSE",
"BLOCK_SHULKER_BOX_OPEN",
"BLOCK_SLIME_BLOCK_BREAK",
"BLOCK_SLIME_BLOCK_FALL",
"BLOCK_SLIME_BLOCK_HIT",
"BLOCK_SLIME_BLOCK_PLACE",
"BLOCK_SLIME_BLOCK_STEP",
"BLOCK_SMALL_AMETHYST_BUD_BREAK",
"BLOCK_SMALL_AMETHYST_BUD_PLACE",
"BLOCK_SMALL_DRIPLEAF_BREAK",
"BLOCK_SMALL_DRIPLEAF_FALL",
"BLOCK_SMALL_DRIPLEAF_HIT",
"BLOCK_SMALL_DRIPLEAF_PLACE",
"BLOCK_SMALL_DRIPLEAF_STEP",
"BLOCK_SMITHING_TABLE_USE",
"BLOCK_SMOKER_SMOKE",
"BLOCK_SNOW_BREAK",
"BLOCK_SNOW_FALL",
"BLOCK_SNOW_HIT",
"BLOCK_SNOW_PLACE",
"BLOCK_SNOW_STEP",
"BLOCK_SOUL_SAND_BREAK",
"BLOCK_SOUL_SAND_FALL",
"BLOCK_SOUL_SAND_HIT",
"BLOCK_SOUL_SAND_PLACE",
"BLOCK_SOUL_SAND_STEP",
"BLOCK_SOUL_SOIL_BREAK",
"BLOCK_SOUL_SOIL_FALL",
"BLOCK_SOUL_SOIL_HIT",
"BLOCK_SOUL_SOIL_PLACE",
"BLOCK_SOUL_SOIL_STEP",
"BLOCK_SPORE_BLOSSOM_BREAK",
"BLOCK_SPORE_BLOSSOM_FALL",
"BLOCK_SPORE_BLOSSOM_HIT",
"BLOCK_SPORE_BLOSSOM_PLACE",
"BLOCK_SPORE_BLOSSOM_STEP",
"BLOCK_STEM_BREAK",
"BLOCK_STEM_FALL",
"BLOCK_STEM_HIT",
"BLOCK_STEM_PLACE",
"BLOCK_STEM_STEP",
"BLOCK_STONE_BREAK",
"BLOCK_STONE_BUTTON_CLICK_OFF",
"BLOCK_STONE_BUTTON_CLICK_ON",
"BLOCK_STONE_FALL",
"BLOCK_STONE_HIT",
"BLOCK_STONE_PLACE",
"BLOCK_STONE_PRESSURE_PLATE_CLICK_OFF",
"BLOCK_STONE_PRESSURE_PLATE_CLICK_ON",
"BLOCK_STONE_STEP",
"BLOCK_SWEET_BERRY_BUSH_BREAK",
"BLOCK_SWEET_BERRY_BUSH_PICK_BERRIES",
"BLOCK_SWEET_BERRY_BUSH_PLACE",
"BLOCK_TRIPWIRE_ATTACH",
"BLOCK_TRIPWIRE_CLICK_OFF",
"BLOCK_TRIPWIRE_CLICK_ON",
"BLOCK_TRIPWIRE_DETACH",
"BLOCK_TUFF_BREAK",
"BLOCK_TUFF_FALL",
"BLOCK_TUFF_HIT",
"BLOCK_TUFF_PLACE",
"BLOCK_TUFF_STEP",
"BLOCK_VINE_BREAK",
"BLOCK_VINE_FALL",
"BLOCK_VINE_HIT",
"BLOCK_VINE_PLACE",
"BLOCK_VINE_STEP",
"BLOCK_WART_BLOCK_BREAK",
"BLOCK_WART_BLOCK_FALL",
"BLOCK_WART_BLOCK_HIT",
"BLOCK_WART_BLOCK_PLACE",
"BLOCK_WART_BLOCK_STEP",
"BLOCK_WATER_AMBIENT",
"BLOCK_WEEPING_VINES_BREAK",
"BLOCK_WEEPING_VINES_FALL",
"BLOCK_WEEPING_VINES_HIT",
"BLOCK_WEEPING_VINES_PLACE",
"BLOCK_WEEPING_VINES_STEP",
"BLOCK_WET_GRASS_BREAK",
"BLOCK_WET_GRASS_FALL",
"BLOCK_WET_GRASS_HIT",
"BLOCK_WET_GRASS_PLACE",
"BLOCK_WET_GRASS_STEP",
"BLOCK_WOODEN_BUTTON_CLICK_OFF",
"BLOCK_WOODEN_BUTTON_CLICK_ON",
"BLOCK_WOODEN_DOOR_CLOSE",
"BLOCK_WOODEN_DOOR_OPEN",
"BLOCK_WOODEN_PRESSURE_PLATE_CLICK_OFF",
"BLOCK_WOODEN_PRESSURE_PLATE_CLICK_ON",
"BLOCK_WOODEN_TRAPDOOR_CLOSE",
"BLOCK_WOODEN_TRAPDOOR_OPEN",
"BLOCK_WOOD_BREAK",
"BLOCK_WOOD_FALL",
"BLOCK_WOOD_HIT",
"BLOCK_WOOD_PLACE",
"BLOCK_WOOD_STEP",
"BLOCK_WOOL_BREAK",
"BLOCK_WOOL_FALL",
"BLOCK_WOOL_HIT",
"BLOCK_WOOL_PLACE",
"BLOCK_WOOL_STEP",
"ENCHANT_THORNS_HIT",
"ENTITY_ARMOR_STAND_BREAK",
"ENTITY_ARMOR_STAND_FALL",
"ENTITY_ARMOR_STAND_HIT",
"ENTITY_ARMOR_STAND_PLACE",
"ENTITY_ARROW_HIT",
"ENTITY_ARROW_HIT_PLAYER",
"ENTITY_ARROW_SHOOT",
"ENTITY_AXOLOTL_ATTACK",
"ENTITY_AXOLOTL_DEATH",
"ENTITY_AXOLOTL_HURT",
"ENTITY_AXOLOTL_IDLE_AIR",
"ENTITY_AXOLOTL_IDLE_WATER",
"ENTITY_AXOLOTL_SPLASH",
"ENTITY_AXOLOTL_SWIM",
"ENTITY_BAT_AMBIENT",
"ENTITY_BAT_DEATH",
"ENTITY_BAT_HURT",
"ENTITY_BAT_LOOP",
"ENTITY_BAT_TAKEOFF",
"ENTITY_BEE_DEATH",
"ENTITY_BEE_HURT",
"ENTITY_BEE_LOOP",
"ENTITY_BEE_LOOP_AGGRESSIVE",
"ENTITY_BEE_POLLINATE",
"ENTITY_BEE_STING",
"ENTITY_BLAZE_AMBIENT",
"ENTITY_BLAZE_BURN",
"ENTITY_BLAZE_DEATH",
"ENTITY_BLAZE_HURT",
"ENTITY_BLAZE_SHOOT",
"ENTITY_BOAT_PADDLE_LAND",
"ENTITY_BOAT_PADDLE_WATER",
"ENTITY_CAT_AMBIENT",
"ENTITY_CAT_BEG_FOR_FOOD",
"ENTITY_CAT_DEATH",
"ENTITY_CAT_EAT",
"ENTITY_CAT_HISS",
"ENTITY_CAT_HURT",
"ENTITY_CAT_PURR",
"ENTITY_CAT_PURREOW",
"ENTITY_CAT_STRAY_AMBIENT",
"ENTITY_CHICKEN_AMBIENT",
"ENTITY_CHICKEN_DEATH",
"ENTITY_CHICKEN_EGG",
"ENTITY_CHICKEN_HURT",
"ENTITY_CHICKEN_STEP",
"ENTITY_COD_AMBIENT",
"ENTITY_COD_DEATH",
"ENTITY_COD_FLOP",
"ENTITY_COD_HURT",
"ENTITY_COW_AMBIENT",
"ENTITY_COW_DEATH",
"ENTITY_COW_HURT",
"ENTITY_COW_MILK",
"ENTITY_COW_STEP",
"ENTITY_CREEPER_DEATH",
"ENTITY_CREEPER_HURT",
"ENTITY_CREEPER_PRIMED",
"ENTITY_DOLPHIN_AMBIENT",
"ENTITY_DOLPHIN_AMBIENT_WATER",
"ENTITY_DOLPHIN_ATTACK",
"ENTITY_DOLPHIN_DEATH",
"ENTITY_DOLPHIN_EAT",
"ENTITY_DOLPHIN_HURT",
"ENTITY_DOLPHIN_JUMP",
"ENTITY_DOLPHIN_PLAY",
"ENTITY_DOLPHIN_SPLASH",
"ENTITY_DOLPHIN_SWIM",
"ENTITY_DONKEY_AMBIENT",
"ENTITY_DONKEY_ANGRY",
"ENTITY_DONKEY_CHEST",
"ENTITY_DONKEY_DEATH",
"ENTITY_DONKEY_EAT",
"ENTITY_DONKEY_HURT",
"ENTITY_DRAGON_FIREBALL_EXPLODE",
"ENTITY_DROWNED_AMBIENT",
"ENTITY_DROWNED_AMBIENT_WATER",
"ENTITY_DROWNED_DEATH",
"ENTITY_DROWNED_DEATH_WATER",
"ENTITY_DROWNED_HURT",
"ENTITY_DROWNED_HURT_WATER",
"ENTITY_DROWNED_SHOOT",
"ENTITY_DROWNED_STEP",
"ENTITY_DROWNED_SWIM",
"ENTITY_EGG_THROW",
"ENTITY_ELDER_GUARDIAN_AMBIENT",
"ENTITY_ELDER_GUARDIAN_AMBIENT_LAND",
"ENTITY_ELDER_GUARDIAN_CURSE",
"ENTITY_ELDER_GUARDIAN_DEATH",
"ENTITY_ELDER_GUARDIAN_DEATH_LAND",
"ENTITY_ELDER_GUARDIAN_FLOP",
"ENTITY_ELDER_GUARDIAN_HURT",
"ENTITY_ELDER_GUARDIAN_HURT_LAND",
"ENTITY_ENDERMAN_AMBIENT",
"ENTITY_ENDERMAN_DEATH",
"ENTITY_ENDERMAN_HURT",
"ENTITY_ENDERMAN_SCREAM",
"ENTITY_ENDERMAN_STARE",
"ENTITY_ENDERMAN_TELEPORT",
"ENTITY_ENDERMITE_AMBIENT",
"ENTITY_ENDERMITE_DEATH",
"ENTITY_ENDERMITE_HURT",
"ENTITY_ENDERMITE_STEP",
"ENTITY_ENDER_DRAGON_AMBIENT",
"ENTITY_ENDER_DRAGON_DEATH",
"ENTITY_ENDER_DRAGON_FLAP",
"ENTITY_ENDER_DRAGON_GROWL",
"ENTITY_ENDER_DRAGON_HURT",
"ENTITY_ENDER_DRAGON_SHOOT",
"ENTITY_ENDER_EYE_DEATH",
"ENTITY_ENDER_EYE_LAUNCH",
"ENTITY_ENDER_PEARL_THROW",
"ENTITY_EVOKER_AMBIENT",
"ENTITY_EVOKER_CAST_SPELL",
"ENTITY_EVOKER_CELEBRATE",
"ENTITY_EVOKER_DEATH",
"ENTITY_EVOKER_FANGS_ATTACK",
"ENTITY_EVOKER_HURT",
"ENTITY_EVOKER_PREPARE_ATTACK",
"ENTITY_EVOKER_PREPARE_SUMMON",
"ENTITY_EVOKER_PREPARE_WOLOLO",
"ENTITY_EXPERIENCE_BOTTLE_THROW",
"ENTITY_EXPERIENCE_ORB_PICKUP",
"ENTITY_FIREWORK_ROCKET_BLAST",
"ENTITY_FIREWORK_ROCKET_BLAST_FAR",
"ENTITY_FIREWORK_ROCKET_LARGE_BLAST",
"ENTITY_FIREWORK_ROCKET_LARGE_BLAST_FAR",
"ENTITY_FIREWORK_ROCKET_LAUNCH",
"ENTITY_FIREWORK_ROCKET_SHOOT",
"ENTITY_FIREWORK_ROCKET_TWINKLE",
"ENTITY_FIREWORK_ROCKET_TWINKLE_FAR",
"ENTITY_FISHING_BOBBER_RETRIEVE",
"ENTITY_FISHING_BOBBER_SPLASH",
"ENTITY_FISHING_BOBBER_THROW",
"ENTITY_FISH_SWIM",
"ENTITY_FOX_AGGRO",
"ENTITY_FOX_AMBIENT",
"ENTITY_FOX_BITE",
"ENTITY_FOX_DEATH",
"ENTITY_FOX_EAT",
"ENTITY_FOX_HURT",
"ENTITY_FOX_SCREECH",
"ENTITY_FOX_SLEEP",
"ENTITY_FOX_SNIFF",
"ENTITY_FOX_SPIT",
"ENTITY_FOX_TELEPORT",
"ENTITY_GENERIC_BIG_FALL",
"ENTITY_GENERIC_BURN",
"ENTITY_GENERIC_DEATH",
"ENTITY_GENERIC_DRINK",
"ENTITY_GENERIC_EAT",
"ENTITY_GENERIC_EXPLODE",
"ENTITY_GENERIC_EXTINGUISH_FIRE",
"ENTITY_GENERIC_HURT",
"ENTITY_GENERIC_SMALL_FALL",
"ENTITY_GENERIC_SPLASH",
"ENTITY_GENERIC_SWIM",
"ENTITY_GHAST_AMBIENT",
"ENTITY_GHAST_DEATH",
"ENTITY_GHAST_HURT",
"ENTITY_GHAST_SCREAM",
"ENTITY_GHAST_SHOOT",
"ENTITY_GHAST_WARN",
"ENTITY_GLOW_ITEM_FRAME_ADD_ITEM",
"ENTITY_GLOW_ITEM_FRAME_BREAK",
"ENTITY_GLOW_ITEM_FRAME_PLACE",
"ENTITY_GLOW_ITEM_FRAME_REMOVE_ITEM",
"ENTITY_GLOW_ITEM_FRAME_ROTATE_ITEM",
"ENTITY_GLOW_SQUID_AMBIENT",
"ENTITY_GLOW_SQUID_DEATH",
"ENTITY_GLOW_SQUID_HURT",
"ENTITY_GLOW_SQUID_SQUIRT",
"ENTITY_GOAT_AMBIENT",
"ENTITY_GOAT_DEATH",
"ENTITY_GOAT_EAT",
"ENTITY_GOAT_HURT",
"ENTITY_GOAT_LONG_JUMP",
"ENTITY_GOAT_MILK",
"ENTITY_GOAT_PREPARE_RAM",
"ENTITY_GOAT_RAM_IMPACT",
"ENTITY_GOAT_SCREAMING_AMBIENT",
"ENTITY_GOAT_SCREAMING_DEATH",
"ENTITY_GOAT_SCREAMING_EAT",
"ENTITY_GOAT_SCREAMING_HURT",
"ENTITY_GOAT_SCREAMING_LONG_JUMP",
"ENTITY_GOAT_SCREAMING_MILK",
"ENTITY_GOAT_SCREAMING_PREPARE_RAM",
"ENTITY_GOAT_SCREAMING_RAM_IMPACT",
"ENTITY_GOAT_STEP",
"ENTITY_GUARDIAN_AMBIENT",
"ENTITY_GUARDIAN_AMBIENT_LAND",
"ENTITY_GUARDIAN_ATTACK",
"ENTITY_GUARDIAN_DEATH",
"ENTITY_GUARDIAN_DEATH_LAND",
"ENTITY_GUARDIAN_FLOP",
"ENTITY_GUARDIAN_HURT",
"ENTITY_GUARDIAN_HURT_LAND",
"ENTITY_HOGLIN_AMBIENT",
"ENTITY_HOGLIN_ANGRY",
"ENTITY_HOGLIN_ATTACK",
"ENTITY_HOGLIN_CONVERTED_TO_ZOMBIFIED",
"ENTITY_HOGLIN_DEATH",
"ENTITY_HOGLIN_HURT",
"ENTITY_HOGLIN_RETREAT",
"ENTITY_HOGLIN_STEP",
"ENTITY_HORSE_AMBIENT",
"ENTITY_HORSE_ANGRY",
"ENTITY_HORSE_ARMOR",
"ENTITY_HORSE_BREATHE",
"ENTITY_HORSE_DEATH",
"ENTITY_HORSE_EAT",
"ENTITY_HORSE_GALLOP",
"ENTITY_HORSE_HURT",
"ENTITY_HORSE_JUMP",
"ENTITY_HORSE_LAND",
"ENTITY_HORSE_SADDLE",
"ENTITY_HORSE_STEP",
"ENTITY_HORSE_STEP_WOOD",
"ENTITY_HOSTILE_BIG_FALL",
"ENTITY_HOSTILE_DEATH",
"ENTITY_HOSTILE_HURT",
"ENTITY_HOSTILE_SMALL_FALL",
"ENTITY_HOSTILE_SPLASH",
"ENTITY_HOSTILE_SWIM",
"ENTITY_HUSK_AMBIENT",
"ENTITY_HUSK_CONVERTED_TO_ZOMBIE",
"ENTITY_HUSK_DEATH",
"ENTITY_HUSK_HURT",
"ENTITY_HUSK_STEP",
"ENTITY_ILLUSIONER_AMBIENT",
"ENTITY_ILLUSIONER_CAST_SPELL",
"ENTITY_ILLUSIONER_DEATH",
"ENTITY_ILLUSIONER_HURT",
"ENTITY_ILLUSIONER_MIRROR_MOVE",
"ENTITY_ILLUSIONER_PREPARE_BLINDNESS",
"ENTITY_ILLUSIONER_PREPARE_MIRROR",
"ENTITY_IRON_GOLEM_ATTACK",
"ENTITY_IRON_GOLEM_DAMAGE",
"ENTITY_IRON_GOLEM_DEATH",
"ENTITY_IRON_GOLEM_HURT",
"ENTITY_IRON_GOLEM_REPAIR",
"ENTITY_IRON_GOLEM_STEP",
"ENTITY_ITEM_BREAK",
"ENTITY_ITEM_FRAME_ADD_ITEM",
"ENTITY_ITEM_FRAME_BREAK",
"ENTITY_ITEM_FRAME_PLACE",
"ENTITY_ITEM_FRAME_REMOVE_ITEM",
"ENTITY_ITEM_FRAME_ROTATE_ITEM",
"ENTITY_ITEM_PICKUP",
"ENTITY_LEASH_KNOT_BREAK",
"ENTITY_LEASH_KNOT_PLACE",
"ENTITY_LIGHTNING_BOLT_IMPACT",
"ENTITY_LIGHTNING_BOLT_THUNDER",
"ENTITY_LINGERING_POTION_THROW",
"ENTITY_LLAMA_AMBIENT",
"ENTITY_LLAMA_ANGRY",
"ENTITY_LLAMA_CHEST",
"ENTITY_LLAMA_DEATH",
"ENTITY_LLAMA_EAT",
"ENTITY_LLAMA_HURT",
"ENTITY_LLAMA_SPIT",
"ENTITY_LLAMA_STEP",
"ENTITY_LLAMA_SWAG",
"ENTITY_MAGMA_CUBE_DEATH",
"ENTITY_MAGMA_CUBE_DEATH_SMALL",
"ENTITY_MAGMA_CUBE_HURT",
"ENTITY_MAGMA_CUBE_HURT_SMALL",
"ENTITY_MAGMA_CUBE_JUMP",
"ENTITY_MAGMA_CUBE_SQUISH",
"ENTITY_MAGMA_CUBE_SQUISH_SMALL",
"ENTITY_MINECART_INSIDE",
"ENTITY_MINECART_INSIDE_UNDERWATER",
"ENTITY_MINECART_RIDING",
"ENTITY_MOOSHROOM_CONVERT",
"ENTITY_MOOSHROOM_EAT",
"ENTITY_MOOSHROOM_MILK",
"ENTITY_MOOSHROOM_SHEAR",
"ENTITY_MOOSHROOM_SUSPICIOUS_MILK",
"ENTITY_MULE_AMBIENT",
"ENTITY_MULE_ANGRY",
"ENTITY_MULE_CHEST",
"ENTITY_MULE_DEATH",
"ENTITY_MULE_EAT",
"ENTITY_MULE_HURT",
"ENTITY_OCELOT_AMBIENT",
"ENTITY_OCELOT_DEATH",
"ENTITY_OCELOT_HURT",
"ENTITY_PAINTING_BREAK",
"ENTITY_PAINTING_PLACE",
"ENTITY_PANDA_AGGRESSIVE_AMBIENT",
"ENTITY_PANDA_AMBIENT",
"ENTITY_PANDA_BITE",
"ENTITY_PANDA_CANT_BREED",
"ENTITY_PANDA_DEATH",
"ENTITY_PANDA_EAT",
"ENTITY_PANDA_HURT",
"ENTITY_PANDA_PRE_SNEEZE",
"ENTITY_PANDA_SNEEZE",
"ENTITY_PANDA_STEP",
"ENTITY_PANDA_WORRIED_AMBIENT",
"ENTITY_PARROT_AMBIENT",
"ENTITY_PARROT_DEATH",
"ENTITY_PARROT_EAT",
"ENTITY_PARROT_FLY",
"ENTITY_PARROT_HURT",
"ENTITY_PARROT_IMITATE_BLAZE",
"ENTITY_PARROT_IMITATE_CREEPER",
"ENTITY_PARROT_IMITATE_DROWNED",
"ENTITY_PARROT_IMITATE_ELDER_GUARDIAN",
"ENTITY_PARROT_IMITATE_ENDERMITE",
"ENTITY_PARROT_IMITATE_ENDER_DRAGON",
"ENTITY_PARROT_IMITATE_EVOKER",
"ENTITY_PARROT_IMITATE_GHAST",
"ENTITY_PARROT_IMITATE_GUARDIAN",
"ENTITY_PARROT_IMITATE_HOGLIN",
"ENTITY_PARROT_IMITATE_HUSK",
"ENTITY_PARROT_IMITATE_ILLUSIONER",
"ENTITY_PARROT_IMITATE_MAGMA_CUBE",
"ENTITY_PARROT_IMITATE_PHANTOM",
"ENTITY_PARROT_IMITATE_PIGLIN",
"ENTITY_PARROT_IMITATE_PIGLIN_BRUTE",
"ENTITY_PARROT_IMITATE_PILLAGER",
"ENTITY_PARROT_IMITATE_RAVAGER",
"ENTITY_PARROT_IMITATE_SHULKER",
"ENTITY_PARROT_IMITATE_SILVERFISH",
"ENTITY_PARROT_IMITATE_SKELETON",
"ENTITY_PARROT_IMITATE_SLIME",
"ENTITY_PARROT_IMITATE_SPIDER",
"ENTITY_PARROT_IMITATE_STRAY",
"ENTITY_PARROT_IMITATE_VEX",
"ENTITY_PARROT_IMITATE_VINDICATOR",
"ENTITY_PARROT_IMITATE_WITCH",
"ENTITY_PARROT_IMITATE_WITHER",
"ENTITY_PARROT_IMITATE_WITHER_SKELETON",
"ENTITY_PARROT_IMITATE_ZOGLIN",
"ENTITY_PARROT_IMITATE_ZOMBIE",
"ENTITY_PARROT_IMITATE_ZOMBIE_VILLAGER",
"ENTITY_PARROT_STEP",
"ENTITY_PHANTOM_AMBIENT",
"ENTITY_PHANTOM_BITE",
"ENTITY_PHANTOM_DEATH",
"ENTITY_PHANTOM_FLAP",
"ENTITY_PHANTOM_HURT",
"ENTITY_PHANTOM_SWOOP",
"ENTITY_PIGLIN_ADMIRING_ITEM",
"ENTITY_PIGLIN_AMBIENT",
"ENTITY_PIGLIN_ANGRY",
"ENTITY_PIGLIN_BRUTE_AMBIENT",
"ENTITY_PIGLIN_BRUTE_ANGRY",
"ENTITY_PIGLIN_BRUTE_CONVERTED_TO_ZOMBIFIED",
"ENTITY_PIGLIN_BRUTE_DEATH",
"ENTITY_PIGLIN_BRUTE_HURT",
"ENTITY_PIGLIN_BRUTE_STEP",
"ENTITY_PIGLIN_CELEBRATE",
"ENTITY_PIGLIN_CONVERTED_TO_ZOMBIFIED",
"ENTITY_PIGLIN_DEATH",
"ENTITY_PIGLIN_HURT",
"ENTITY_PIGLIN_JEALOUS",
"ENTITY_PIGLIN_RETREAT",
"ENTITY_PIGLIN_STEP",
"ENTITY_PIG_AMBIENT",
"ENTITY_PIG_DEATH",
"ENTITY_PIG_HURT",
"ENTITY_PIG_SADDLE",
"ENTITY_PIG_STEP",
"ENTITY_PILLAGER_AMBIENT",
"ENTITY_PILLAGER_CELEBRATE",
"ENTITY_PILLAGER_DEATH",
"ENTITY_PILLAGER_HURT",
"ENTITY_PLAYER_ATTACK_CRIT",
"ENTITY_PLAYER_ATTACK_KNOCKBACK",
"ENTITY_PLAYER_ATTACK_NODAMAGE",
"ENTITY_PLAYER_ATTACK_STRONG",
"ENTITY_PLAYER_ATTACK_SWEEP",
"ENTITY_PLAYER_ATTACK_WEAK",
"ENTITY_PLAYER_BIG_FALL",
"ENTITY_PLAYER_BREATH",
"ENTITY_PLAYER_BURP",
"ENTITY_PLAYER_DEATH",
"ENTITY_PLAYER_HURT",
"ENTITY_PLAYER_HURT_DROWN",
"ENTITY_PLAYER_HURT_FREEZE",
"ENTITY_PLAYER_HURT_ON_FIRE",
"ENTITY_PLAYER_HURT_SWEET_BERRY_BUSH",
"ENTITY_PLAYER_LEVELUP",
"ENTITY_PLAYER_SMALL_FALL",
"ENTITY_PLAYER_SPLASH",
"ENTITY_PLAYER_SPLASH_HIGH_SPEED",
"ENTITY_PLAYER_SWIM",
"ENTITY_POLAR_BEAR_AMBIENT",
"ENTITY_POLAR_BEAR_AMBIENT_BABY",
"ENTITY_POLAR_BEAR_DEATH",
"ENTITY_POLAR_BEAR_HURT",
"ENTITY_POLAR_BEAR_STEP",
"ENTITY_POLAR_BEAR_WARNING",
"ENTITY_PUFFER_FISH_AMBIENT",
"ENTITY_PUFFER_FISH_BLOW_OUT",
"ENTITY_PUFFER_FISH_BLOW_UP",
"ENTITY_PUFFER_FISH_DEATH",
"ENTITY_PUFFER_FISH_FLOP",
"ENTITY_PUFFER_FISH_HURT",
"ENTITY_PUFFER_FISH_STING",
"ENTITY_RABBIT_AMBIENT",
"ENTITY_RABBIT_ATTACK",
"ENTITY_RABBIT_DEATH",
"ENTITY_RABBIT_HURT",
"ENTITY_RABBIT_JUMP",
"ENTITY_RAVAGER_AMBIENT",
"ENTITY_RAVAGER_ATTACK",
"ENTITY_RAVAGER_CELEBRATE",
"ENTITY_RAVAGER_DEATH",
"ENTITY_RAVAGER_HURT",
"ENTITY_RAVAGER_ROAR",
"ENTITY_RAVAGER_STEP",
"ENTITY_RAVAGER_STUNNED",
"ENTITY_SALMON_AMBIENT",
"ENTITY_SALMON_DEATH",
"ENTITY_SALMON_FLOP",
"ENTITY_SALMON_HURT",
"ENTITY_SHEEP_AMBIENT",
"ENTITY_SHEEP_DEATH",
"ENTITY_SHEEP_HURT",
"ENTITY_SHEEP_SHEAR",
"ENTITY_SHEEP_STEP",
"ENTITY_SHULKER_AMBIENT",
"ENTITY_SHULKER_BULLET_HIT",
"ENTITY_SHULKER_BULLET_HURT",
"ENTITY_SHULKER_CLOSE",
"ENTITY_SHULKER_DEATH",
"ENTITY_SHULKER_HURT",
"ENTITY_SHULKER_HURT_CLOSED",
"ENTITY_SHULKER_OPEN",
"ENTITY_SHULKER_SHOOT",
"ENTITY_SHULKER_TELEPORT",
"ENTITY_SILVERFISH_AMBIENT",
"ENTITY_SILVERFISH_DEATH",
"ENTITY_SILVERFISH_HURT",
"ENTITY_SILVERFISH_STEP",
"ENTITY_SKELETON_AMBIENT",
"ENTITY_SKELETON_CONVERTED_TO_STRAY",
"ENTITY_SKELETON_DEATH",
"ENTITY_SKELETON_HORSE_AMBIENT",
"ENTITY_SKELETON_HORSE_AMBIENT_WATER",
"ENTITY_SKELETON_HORSE_DEATH",
"ENTITY_SKELETON_HORSE_GALLOP_WATER",
"ENTITY_SKELETON_HORSE_HURT",
"ENTITY_SKELETON_HORSE_JUMP_WATER",
"ENTITY_SKELETON_HORSE_STEP_WATER",
"ENTITY_SKELETON_HORSE_SWIM",
"ENTITY_SKELETON_HURT",
"ENTITY_SKELETON_SHOOT",
"ENTITY_SKELETON_STEP",
"ENTITY_SLIME_ATTACK",
"ENTITY_SLIME_DEATH",
"ENTITY_SLIME_DEATH_SMALL",
"ENTITY_SLIME_HURT",
"ENTITY_SLIME_HURT_SMALL",
"ENTITY_SLIME_JUMP",
"ENTITY_SLIME_JUMP_SMALL",
"ENTITY_SLIME_SQUISH",
"ENTITY_SLIME_SQUISH_SMALL",
"ENTITY_SNOWBALL_THROW",
"ENTITY_SNOW_GOLEM_AMBIENT",
"ENTITY_SNOW_GOLEM_DEATH",
"ENTITY_SNOW_GOLEM_HURT",
"ENTITY_SNOW_GOLEM_SHEAR",
"ENTITY_SNOW_GOLEM_SHOOT",
"ENTITY_SPIDER_AMBIENT",
"ENTITY_SPIDER_DEATH",
"ENTITY_SPIDER_HURT",
"ENTITY_SPIDER_STEP",
"ENTITY_SPLASH_POTION_BREAK",
"ENTITY_SPLASH_POTION_THROW",
"ENTITY_SQUID_AMBIENT",
"ENTITY_SQUID_DEATH",
"ENTITY_SQUID_HURT",
"ENTITY_SQUID_SQUIRT",
"ENTITY_STRAY_AMBIENT",
"ENTITY_STRAY_DEATH",
"ENTITY_STRAY_HURT",
"ENTITY_STRAY_STEP",
"ENTITY_STRIDER_AMBIENT",
"ENTITY_STRIDER_DEATH",
"ENTITY_STRIDER_EAT",
"ENTITY_STRIDER_HAPPY",
"ENTITY_STRIDER_HURT",
"ENTITY_STRIDER_RETREAT",
"ENTITY_STRIDER_SADDLE",
"ENTITY_STRIDER_STEP",
"ENTITY_STRIDER_STEP_LAVA",
"ENTITY_TNT_PRIMED",
"ENTITY_TROPICAL_FISH_AMBIENT",
"ENTITY_TROPICAL_FISH_DEATH",
"ENTITY_TROPICAL_FISH_FLOP",
"ENTITY_TROPICAL_FISH_HURT",
"ENTITY_TURTLE_AMBIENT_LAND",
"ENTITY_TURTLE_DEATH",
"ENTITY_TURTLE_DEATH_BABY",
"ENTITY_TURTLE_EGG_BREAK",
"ENTITY_TURTLE_EGG_CRACK",
"ENTITY_TURTLE_EGG_HATCH",
"ENTITY_TURTLE_HURT",
"ENTITY_TURTLE_HURT_BABY",
"ENTITY_TURTLE_LAY_EGG",
"ENTITY_TURTLE_SHAMBLE",
"ENTITY_TURTLE_SHAMBLE_BABY",
"ENTITY_TURTLE_SWIM",
"ENTITY_VEX_AMBIENT",
"ENTITY_VEX_CHARGE",
"ENTITY_VEX_DEATH",
"ENTITY_VEX_HURT",
"ENTITY_VILLAGER_AMBIENT",
"ENTITY_VILLAGER_CELEBRATE",
"ENTITY_VILLAGER_DEATH",
"ENTITY_VILLAGER_HURT",
"ENTITY_VILLAGER_NO",
"ENTITY_VILLAGER_TRADE",
"ENTITY_VILLAGER_WORK_ARMORER",
"ENTITY_VILLAGER_WORK_BUTCHER",
"ENTITY_VILLAGER_WORK_CARTOGRAPHER",
"ENTITY_VILLAGER_WORK_CLERIC",
"ENTITY_VILLAGER_WORK_FARMER",
"ENTITY_VILLAGER_WORK_FISHERMAN",
"ENTITY_VILLAGER_WORK_FLETCHER",
"ENTITY_VILLAGER_WORK_LEATHERWORKER",
"ENTITY_VILLAGER_WORK_LIBRARIAN",
"ENTITY_VILLAGER_WORK_MASON",
"ENTITY_VILLAGER_WORK_SHEPHERD",
"ENTITY_VILLAGER_WORK_TOOLSMITH",
"ENTITY_VILLAGER_WORK_WEAPONSMITH",
"ENTITY_VILLAGER_YES",
"ENTITY_VINDICATOR_AMBIENT",
"ENTITY_VINDICATOR_CELEBRATE",
"ENTITY_VINDICATOR_DEATH",
"ENTITY_VINDICATOR_HURT",
"ENTITY_WANDERING_TRADER_AMBIENT",
"ENTITY_WANDERING_TRADER_DEATH",
"ENTITY_WANDERING_TRADER_DISAPPEARED",
"ENTITY_WANDERING_TRADER_DRINK_MILK",
"ENTITY_WANDERING_TRADER_DRINK_POTION",
"ENTITY_WANDERING_TRADER_HURT",
"ENTITY_WANDERING_TRADER_NO",
"ENTITY_WANDERING_TRADER_REAPPEARED",
"ENTITY_WANDERING_TRADER_TRADE",
"ENTITY_WANDERING_TRADER_YES",
"ENTITY_WITCH_AMBIENT",
"ENTITY_WITCH_CELEBRATE",
"ENTITY_WITCH_DEATH",
"ENTITY_WITCH_DRINK",
"ENTITY_WITCH_HURT",
"ENTITY_WITCH_THROW",
"ENTITY_WITHER_AMBIENT",
"ENTITY_WITHER_BREAK_BLOCK",
"ENTITY_WITHER_DEATH",
"ENTITY_WITHER_HURT",
"ENTITY_WITHER_SHOOT",
"ENTITY_WITHER_SKELETON_AMBIENT",
"ENTITY_WITHER_SKELETON_DEATH",
"ENTITY_WITHER_SKELETON_HURT",
"ENTITY_WITHER_SKELETON_STEP",
"ENTITY_WITHER_SPAWN",
"ENTITY_WOLF_AMBIENT",
"ENTITY_WOLF_DEATH",
"ENTITY_WOLF_GROWL",
"ENTITY_WOLF_HOWL",
"ENTITY_WOLF_HURT",
"ENTITY_WOLF_PANT",
"ENTITY_WOLF_SHAKE",
"ENTITY_WOLF_STEP",
"ENTITY_WOLF_WHINE",
"ENTITY_ZOGLIN_AMBIENT",
"ENTITY_ZOGLIN_ANGRY",
"ENTITY_ZOGLIN_ATTACK",
"ENTITY_ZOGLIN_DEATH",
"ENTITY_ZOGLIN_HURT",
"ENTITY_ZOGLIN_STEP",
"ENTITY_ZOMBIE_AMBIENT",
"ENTITY_ZOMBIE_ATTACK_IRON_DOOR",
"ENTITY_ZOMBIE_ATTACK_WOODEN_DOOR",
"ENTITY_ZOMBIE_BREAK_WOODEN_DOOR",
"ENTITY_ZOMBIE_CONVERTED_TO_DROWNED",
"ENTITY_ZOMBIE_DEATH",
"ENTITY_ZOMBIE_DESTROY_EGG",
"ENTITY_ZOMBIE_HORSE_AMBIENT",
"ENTITY_ZOMBIE_HORSE_DEATH",
"ENTITY_ZOMBIE_HORSE_HURT",
"ENTITY_ZOMBIE_HURT",
"ENTITY_ZOMBIE_INFECT",
"ENTITY_ZOMBIE_STEP",
"ENTITY_ZOMBIE_VILLAGER_AMBIENT",
"ENTITY_ZOMBIE_VILLAGER_CONVERTED",
"ENTITY_ZOMBIE_VILLAGER_CURE",
"ENTITY_ZOMBIE_VILLAGER_DEATH",
"ENTITY_ZOMBIE_VILLAGER_HURT",
"ENTITY_ZOMBIE_VILLAGER_STEP",
"ENTITY_ZOMBIFIED_PIGLIN_AMBIENT",
"ENTITY_ZOMBIFIED_PIGLIN_ANGRY",
"ENTITY_ZOMBIFIED_PIGLIN_DEATH",
"ENTITY_ZOMBIFIED_PIGLIN_HURT",
"EVENT_RAID_HORN",
"ITEM_ARMOR_EQUIP_CHAIN",
"ITEM_ARMOR_EQUIP_DIAMOND",
"ITEM_ARMOR_EQUIP_ELYTRA",
"ITEM_ARMOR_EQUIP_GENERIC",
"ITEM_ARMOR_EQUIP_GOLD",
"ITEM_ARMOR_EQUIP_IRON",
"ITEM_ARMOR_EQUIP_LEATHER",
"ITEM_ARMOR_EQUIP_NETHERITE",
"ITEM_ARMOR_EQUIP_TURTLE",
"ITEM_AXE_SCRAPE",
"ITEM_AXE_STRIP",
"ITEM_AXE_WAX_OFF",
"ITEM_BONE_MEAL_USE",
"ITEM_BOOK_PAGE_TURN",
"ITEM_BOOK_PUT",
"ITEM_BOTTLE_EMPTY",
"ITEM_BOTTLE_FILL",
"ITEM_BOTTLE_FILL_DRAGONBREATH",
"ITEM_BUCKET_EMPTY",
"ITEM_BUCKET_EMPTY_AXOLOTL",
"ITEM_BUCKET_EMPTY_FISH",
"ITEM_BUCKET_EMPTY_LAVA",
"ITEM_BUCKET_EMPTY_POWDER_SNOW",
"ITEM_BUCKET_FILL",
"ITEM_BUCKET_FILL_AXOLOTL",
"ITEM_BUCKET_FILL_FISH",
"ITEM_BUCKET_FILL_LAVA",
"ITEM_BUCKET_FILL_POWDER_SNOW",
"ITEM_CHORUS_FRUIT_TELEPORT",
"ITEM_CROP_PLANT",
"ITEM_CROSSBOW_HIT",
"ITEM_CROSSBOW_LOADING_END",
"ITEM_CROSSBOW_LOADING_MIDDLE",
"ITEM_CROSSBOW_LOADING_START",
"ITEM_CROSSBOW_QUICK_CHARGE_1",
"ITEM_CROSSBOW_QUICK_CHARGE_2",
"ITEM_CROSSBOW_QUICK_CHARGE_3",
"ITEM_CROSSBOW_SHOOT",
"ITEM_DYE_USE",
"ITEM_ELYTRA_FLYING",
"ITEM_FIRECHARGE_USE",
"ITEM_FLINTANDSTEEL_USE",
"ITEM_GLOW_INK_SAC_USE",
"ITEM_HOE_TILL",
"ITEM_HONEYCOMB_WAX_ON",
"ITEM_HONEY_BOTTLE_DRINK",
"ITEM_INK_SAC_USE",
"ITEM_LODESTONE_COMPASS_LOCK",
"ITEM_NETHER_WART_PLANT",
"ITEM_SHIELD_BLOCK",
"ITEM_SHIELD_BREAK",
"ITEM_SHOVEL_FLATTEN",
"ITEM_SPYGLASS_STOP_USING",
"ITEM_SPYGLASS_USE",
"ITEM_TOTEM_USE",
"ITEM_TRIDENT_HIT",
"ITEM_TRIDENT_HIT_GROUND",
"ITEM_TRIDENT_RETURN",
"ITEM_TRIDENT_RIPTIDE_1",
"ITEM_TRIDENT_RIPTIDE_2",
"ITEM_TRIDENT_RIPTIDE_3",
"ITEM_TRIDENT_THROW",
"ITEM_TRIDENT_THUNDER",
"MUSIC_CREATIVE",
"MUSIC_CREDITS",
"MUSIC_DISC_11",
"MUSIC_DISC_13",
"MUSIC_DISC_BLOCKS",
"MUSIC_DISC_CAT",
"MUSIC_DISC_CHIRP",
"MUSIC_DISC_FAR",
"MUSIC_DISC_MALL",
"MUSIC_DISC_MELLOHI",
"MUSIC_DISC_PIGSTEP",
"MUSIC_DISC_STAL",
"MUSIC_DISC_STRAD",
"MUSIC_DISC_WAIT",
"MUSIC_DISC_WARD",
"MUSIC_DRAGON",
"MUSIC_END",
"MUSIC_GAME",
"MUSIC_MENU",
"MUSIC_NETHER_BASALT_DELTAS",
"MUSIC_NETHER_CRIMSON_FOREST",
"MUSIC_NETHER_NETHER_WASTES",
"MUSIC_NETHER_SOUL_SAND_VALLEY",
"MUSIC_NETHER_WARPED_FOREST",
"MUSIC_UNDER_WATER",
"PARTICLE_SOUL_ESCAPE",
"UI_BUTTON_CLICK",
"UI_CARTOGRAPHY_TABLE_TAKE_RESULT",
"UI_LOOM_SELECT_PATTERN",
"UI_LOOM_TAKE_RESULT",
"UI_STONECUTTER_SELECT_RECIPE",
"UI_STONECUTTER_TAKE_RESULT",
"UI_TOAST_CHALLENGE_COMPLETE",
"UI_TOAST_IN",
"UI_TOAST_OUT",
"WEATHER_RAIN",
"WEATHER_RAIN_ABOVE"
]},
"enum-snippet-object-rotator": {"enum": []},
"obj-com-volmit-iris-engine-object-iristreesize": {"anyOf": [
{
"description": "Sapling override object picking options",
"type": "object",
"properties": {
"width": {
"type": "integer",
"description": "width\nThe width of the sapling area\n \nInteger\n\n \n* Default Value is 1"
},
"depth": {
"type": "integer",
"description": "depth\nThe depth of the sapling area\n \nInteger\n\n \n* Default Value is 1"
}
}
},
{"type": "string"}
]},
"obj-com-volmit-iris-engine-object-iriscaveplacer": {"anyOf": [
{
"description": "Translate objects",
"type": "object",
"properties": {
"rarity": {
"type": "integer",
"minimum": 1,
"description": "rarity\nTypically a 1 in RARITY on a per chunk/fork basis\n \nInteger\n\n \n* Default Value is 15\n* Minimum allowed is 1"
},
"cave": {
"type": "string",
"minLength": 1,
"$ref": "#/definitions/erzcaves",
"description": "cave\nThe cave to place\n \nIris Cave\n\n* Minimum Length allowed is 1\nMust be a valid caves (use ctrl+space for auto complete!)"
},
"breakSurface": {
"type": "boolean",
"description": "breakSurface\nIf set to true, this cave is allowed to break the surface\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
},
"caveStartHeight": {
"anyOf": [
{
"!required": false,
"type": "object",
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisstyledrange",
"description": "caveStartHeight\nThe height range this cave can spawn at. If breakSurface is false, the output of this range will be clamped by the current world height to prevent surface breaking.\n \nStyledRange (Object)\nRepresents a range styled with a custom generator\n \nYou can instead specify \"snippet/style-range/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
{
"type": "string",
"$ref": "#/definitions/enum-snippet-style-range",
"description": "caveStartHeight\nThe height range this cave can spawn at. If breakSurface is false, the output of this range will be clamped by the current world height to prevent surface breaking.\n \nStyledRange (Object)\nRepresents a range styled with a custom generator\n \nYou can instead specify \"snippet/style-range/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
],
"description": "caveStartHeight\nThe height range this cave can spawn at. If breakSurface is false, the output of this range will be clamped by the current world height to prevent surface breaking.\n \nStyledRange (Object)\nRepresents a range styled with a custom generator\n \nYou can instead specify \"snippet/style-range/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
}
},
{"type": "string"}
]},
"enum-block-type": {"enum": [
"minecraft:air",
"minecraft:stone",
"minecraft:granite",
"minecraft:polished_granite",
"minecraft:diorite",
"minecraft:polished_diorite",
"minecraft:andesite",
"minecraft:polished_andesite",
"minecraft:deepslate",
"minecraft:cobbled_deepslate",
"minecraft:polished_deepslate",
"minecraft:calcite",
"minecraft:tuff",
"minecraft:dripstone_block",
"minecraft:grass_block",
"minecraft:dirt",
"minecraft:coarse_dirt",
"minecraft:podzol",
"minecraft:rooted_dirt",
"minecraft:crimson_nylium",
"minecraft:warped_nylium",
"minecraft:cobblestone",
"minecraft:oak_planks",
"minecraft:spruce_planks",
"minecraft:birch_planks",
"minecraft:jungle_planks",
"minecraft:acacia_planks",
"minecraft:dark_oak_planks",
"minecraft:crimson_planks",
"minecraft:warped_planks",
"minecraft:oak_sapling",
"minecraft:spruce_sapling",
"minecraft:birch_sapling",
"minecraft:jungle_sapling",
"minecraft:acacia_sapling",
"minecraft:dark_oak_sapling",
"minecraft:bedrock",
"minecraft:sand",
"minecraft:red_sand",
"minecraft:gravel",
"minecraft:coal_ore",
"minecraft:deepslate_coal_ore",
"minecraft:iron_ore",
"minecraft:deepslate_iron_ore",
"minecraft:copper_ore",
"minecraft:deepslate_copper_ore",
"minecraft:gold_ore",
"minecraft:deepslate_gold_ore",
"minecraft:redstone_ore",
"minecraft:deepslate_redstone_ore",
"minecraft:emerald_ore",
"minecraft:deepslate_emerald_ore",
"minecraft:lapis_ore",
"minecraft:deepslate_lapis_ore",
"minecraft:diamond_ore",
"minecraft:deepslate_diamond_ore",
"minecraft:nether_gold_ore",
"minecraft:nether_quartz_ore",
"minecraft:ancient_debris",
"minecraft:coal_block",
"minecraft:raw_iron_block",
"minecraft:raw_copper_block",
"minecraft:raw_gold_block",
"minecraft:amethyst_block",
"minecraft:budding_amethyst",
"minecraft:iron_block",
"minecraft:copper_block",
"minecraft:gold_block",
"minecraft:diamond_block",
"minecraft:netherite_block",
"minecraft:exposed_copper",
"minecraft:weathered_copper",
"minecraft:oxidized_copper",
"minecraft:cut_copper",
"minecraft:exposed_cut_copper",
"minecraft:weathered_cut_copper",
"minecraft:oxidized_cut_copper",
"minecraft:cut_copper_stairs",
"minecraft:exposed_cut_copper_stairs",
"minecraft:weathered_cut_copper_stairs",
"minecraft:oxidized_cut_copper_stairs",
"minecraft:cut_copper_slab",
"minecraft:exposed_cut_copper_slab",
"minecraft:weathered_cut_copper_slab",
"minecraft:oxidized_cut_copper_slab",
"minecraft:waxed_copper_block",
"minecraft:waxed_exposed_copper",
"minecraft:waxed_weathered_copper",
"minecraft:waxed_oxidized_copper",
"minecraft:waxed_cut_copper",
"minecraft:waxed_exposed_cut_copper",
"minecraft:waxed_weathered_cut_copper",
"minecraft:waxed_oxidized_cut_copper",
"minecraft:waxed_cut_copper_stairs",
"minecraft:waxed_exposed_cut_copper_stairs",
"minecraft:waxed_weathered_cut_copper_stairs",
"minecraft:waxed_oxidized_cut_copper_stairs",
"minecraft:waxed_cut_copper_slab",
"minecraft:waxed_exposed_cut_copper_slab",
"minecraft:waxed_weathered_cut_copper_slab",
"minecraft:waxed_oxidized_cut_copper_slab",
"minecraft:oak_log",
"minecraft:spruce_log",
"minecraft:birch_log",
"minecraft:jungle_log",
"minecraft:acacia_log",
"minecraft:dark_oak_log",
"minecraft:crimson_stem",
"minecraft:warped_stem",
"minecraft:stripped_oak_log",
"minecraft:stripped_spruce_log",
"minecraft:stripped_birch_log",
"minecraft:stripped_jungle_log",
"minecraft:stripped_acacia_log",
"minecraft:stripped_dark_oak_log",
"minecraft:stripped_crimson_stem",
"minecraft:stripped_warped_stem",
"minecraft:stripped_oak_wood",
"minecraft:stripped_spruce_wood",
"minecraft:stripped_birch_wood",
"minecraft:stripped_jungle_wood",
"minecraft:stripped_acacia_wood",
"minecraft:stripped_dark_oak_wood",
"minecraft:stripped_crimson_hyphae",
"minecraft:stripped_warped_hyphae",
"minecraft:oak_wood",
"minecraft:spruce_wood",
"minecraft:birch_wood",
"minecraft:jungle_wood",
"minecraft:acacia_wood",
"minecraft:dark_oak_wood",
"minecraft:crimson_hyphae",
"minecraft:warped_hyphae",
"minecraft:oak_leaves",
"minecraft:spruce_leaves",
"minecraft:birch_leaves",
"minecraft:jungle_leaves",
"minecraft:acacia_leaves",
"minecraft:dark_oak_leaves",
"minecraft:azalea_leaves",
"minecraft:flowering_azalea_leaves",
"minecraft:sponge",
"minecraft:wet_sponge",
"minecraft:glass",
"minecraft:tinted_glass",
"minecraft:lapis_block",
"minecraft:sandstone",
"minecraft:chiseled_sandstone",
"minecraft:cut_sandstone",
"minecraft:cobweb",
"minecraft:grass",
"minecraft:fern",
"minecraft:azalea",
"minecraft:flowering_azalea",
"minecraft:dead_bush",
"minecraft:seagrass",
"minecraft:sea_pickle",
"minecraft:white_wool",
"minecraft:orange_wool",
"minecraft:magenta_wool",
"minecraft:light_blue_wool",
"minecraft:yellow_wool",
"minecraft:lime_wool",
"minecraft:pink_wool",
"minecraft:gray_wool",
"minecraft:light_gray_wool",
"minecraft:cyan_wool",
"minecraft:purple_wool",
"minecraft:blue_wool",
"minecraft:brown_wool",
"minecraft:green_wool",
"minecraft:red_wool",
"minecraft:black_wool",
"minecraft:dandelion",
"minecraft:poppy",
"minecraft:blue_orchid",
"minecraft:allium",
"minecraft:azure_bluet",
"minecraft:red_tulip",
"minecraft:orange_tulip",
"minecraft:white_tulip",
"minecraft:pink_tulip",
"minecraft:oxeye_daisy",
"minecraft:cornflower",
"minecraft:lily_of_the_valley",
"minecraft:wither_rose",
"minecraft:spore_blossom",
"minecraft:brown_mushroom",
"minecraft:red_mushroom",
"minecraft:crimson_fungus",
"minecraft:warped_fungus",
"minecraft:crimson_roots",
"minecraft:warped_roots",
"minecraft:nether_sprouts",
"minecraft:weeping_vines",
"minecraft:twisting_vines",
"minecraft:sugar_cane",
"minecraft:kelp",
"minecraft:moss_carpet",
"minecraft:moss_block",
"minecraft:hanging_roots",
"minecraft:big_dripleaf",
"minecraft:small_dripleaf",
"minecraft:bamboo",
"minecraft:oak_slab",
"minecraft:spruce_slab",
"minecraft:birch_slab",
"minecraft:jungle_slab",
"minecraft:acacia_slab",
"minecraft:dark_oak_slab",
"minecraft:crimson_slab",
"minecraft:warped_slab",
"minecraft:stone_slab",
"minecraft:smooth_stone_slab",
"minecraft:sandstone_slab",
"minecraft:cut_sandstone_slab",
"minecraft:petrified_oak_slab",
"minecraft:cobblestone_slab",
"minecraft:brick_slab",
"minecraft:stone_brick_slab",
"minecraft:nether_brick_slab",
"minecraft:quartz_slab",
"minecraft:red_sandstone_slab",
"minecraft:cut_red_sandstone_slab",
"minecraft:purpur_slab",
"minecraft:prismarine_slab",
"minecraft:prismarine_brick_slab",
"minecraft:dark_prismarine_slab",
"minecraft:smooth_quartz",
"minecraft:smooth_red_sandstone",
"minecraft:smooth_sandstone",
"minecraft:smooth_stone",
"minecraft:bricks",
"minecraft:bookshelf",
"minecraft:mossy_cobblestone",
"minecraft:obsidian",
"minecraft:torch",
"minecraft:end_rod",
"minecraft:chorus_plant",
"minecraft:chorus_flower",
"minecraft:purpur_block",
"minecraft:purpur_pillar",
"minecraft:purpur_stairs",
"minecraft:spawner",
"minecraft:oak_stairs",
"minecraft:chest",
"minecraft:crafting_table",
"minecraft:farmland",
"minecraft:furnace",
"minecraft:ladder",
"minecraft:cobblestone_stairs",
"minecraft:snow",
"minecraft:ice",
"minecraft:snow_block",
"minecraft:cactus",
"minecraft:clay",
"minecraft:jukebox",
"minecraft:oak_fence",
"minecraft:spruce_fence",
"minecraft:birch_fence",
"minecraft:jungle_fence",
"minecraft:acacia_fence",
"minecraft:dark_oak_fence",
"minecraft:crimson_fence",
"minecraft:warped_fence",
"minecraft:pumpkin",
"minecraft:carved_pumpkin",
"minecraft:jack_o_lantern",
"minecraft:netherrack",
"minecraft:soul_sand",
"minecraft:soul_soil",
"minecraft:basalt",
"minecraft:polished_basalt",
"minecraft:smooth_basalt",
"minecraft:soul_torch",
"minecraft:glowstone",
"minecraft:infested_stone",
"minecraft:infested_cobblestone",
"minecraft:infested_stone_bricks",
"minecraft:infested_mossy_stone_bricks",
"minecraft:infested_cracked_stone_bricks",
"minecraft:infested_chiseled_stone_bricks",
"minecraft:infested_deepslate",
"minecraft:stone_bricks",
"minecraft:mossy_stone_bricks",
"minecraft:cracked_stone_bricks",
"minecraft:chiseled_stone_bricks",
"minecraft:deepslate_bricks",
"minecraft:cracked_deepslate_bricks",
"minecraft:deepslate_tiles",
"minecraft:cracked_deepslate_tiles",
"minecraft:chiseled_deepslate",
"minecraft:brown_mushroom_block",
"minecraft:red_mushroom_block",
"minecraft:mushroom_stem",
"minecraft:iron_bars",
"minecraft:chain",
"minecraft:glass_pane",
"minecraft:melon",
"minecraft:vine",
"minecraft:glow_lichen",
"minecraft:brick_stairs",
"minecraft:stone_brick_stairs",
"minecraft:mycelium",
"minecraft:lily_pad",
"minecraft:nether_bricks",
"minecraft:cracked_nether_bricks",
"minecraft:chiseled_nether_bricks",
"minecraft:nether_brick_fence",
"minecraft:nether_brick_stairs",
"minecraft:enchanting_table",
"minecraft:end_portal_frame",
"minecraft:end_stone",
"minecraft:end_stone_bricks",
"minecraft:dragon_egg",
"minecraft:sandstone_stairs",
"minecraft:ender_chest",
"minecraft:emerald_block",
"minecraft:spruce_stairs",
"minecraft:birch_stairs",
"minecraft:jungle_stairs",
"minecraft:crimson_stairs",
"minecraft:warped_stairs",
"minecraft:command_block",
"minecraft:beacon",
"minecraft:cobblestone_wall",
"minecraft:mossy_cobblestone_wall",
"minecraft:brick_wall",
"minecraft:prismarine_wall",
"minecraft:red_sandstone_wall",
"minecraft:mossy_stone_brick_wall",
"minecraft:granite_wall",
"minecraft:stone_brick_wall",
"minecraft:nether_brick_wall",
"minecraft:andesite_wall",
"minecraft:red_nether_brick_wall",
"minecraft:sandstone_wall",
"minecraft:end_stone_brick_wall",
"minecraft:diorite_wall",
"minecraft:blackstone_wall",
"minecraft:polished_blackstone_wall",
"minecraft:polished_blackstone_brick_wall",
"minecraft:cobbled_deepslate_wall",
"minecraft:polished_deepslate_wall",
"minecraft:deepslate_brick_wall",
"minecraft:deepslate_tile_wall",
"minecraft:anvil",
"minecraft:chipped_anvil",
"minecraft:damaged_anvil",
"minecraft:chiseled_quartz_block",
"minecraft:quartz_block",
"minecraft:quartz_bricks",
"minecraft:quartz_pillar",
"minecraft:quartz_stairs",
"minecraft:white_terracotta",
"minecraft:orange_terracotta",
"minecraft:magenta_terracotta",
"minecraft:light_blue_terracotta",
"minecraft:yellow_terracotta",
"minecraft:lime_terracotta",
"minecraft:pink_terracotta",
"minecraft:gray_terracotta",
"minecraft:light_gray_terracotta",
"minecraft:cyan_terracotta",
"minecraft:purple_terracotta",
"minecraft:blue_terracotta",
"minecraft:brown_terracotta",
"minecraft:green_terracotta",
"minecraft:red_terracotta",
"minecraft:black_terracotta",
"minecraft:barrier",
"minecraft:light",
"minecraft:hay_block",
"minecraft:white_carpet",
"minecraft:orange_carpet",
"minecraft:magenta_carpet",
"minecraft:light_blue_carpet",
"minecraft:yellow_carpet",
"minecraft:lime_carpet",
"minecraft:pink_carpet",
"minecraft:gray_carpet",
"minecraft:light_gray_carpet",
"minecraft:cyan_carpet",
"minecraft:purple_carpet",
"minecraft:blue_carpet",
"minecraft:brown_carpet",
"minecraft:green_carpet",
"minecraft:red_carpet",
"minecraft:black_carpet",
"minecraft:terracotta",
"minecraft:packed_ice",
"minecraft:acacia_stairs",
"minecraft:dark_oak_stairs",
"minecraft:dirt_path",
"minecraft:sunflower",
"minecraft:lilac",
"minecraft:rose_bush",
"minecraft:peony",
"minecraft:tall_grass",
"minecraft:large_fern",
"minecraft:white_stained_glass",
"minecraft:orange_stained_glass",
"minecraft:magenta_stained_glass",
"minecraft:light_blue_stained_glass",
"minecraft:yellow_stained_glass",
"minecraft:lime_stained_glass",
"minecraft:pink_stained_glass",
"minecraft:gray_stained_glass",
"minecraft:light_gray_stained_glass",
"minecraft:cyan_stained_glass",
"minecraft:purple_stained_glass",
"minecraft:blue_stained_glass",
"minecraft:brown_stained_glass",
"minecraft:green_stained_glass",
"minecraft:red_stained_glass",
"minecraft:black_stained_glass",
"minecraft:white_stained_glass_pane",
"minecraft:orange_stained_glass_pane",
"minecraft:magenta_stained_glass_pane",
"minecraft:light_blue_stained_glass_pane",
"minecraft:yellow_stained_glass_pane",
"minecraft:lime_stained_glass_pane",
"minecraft:pink_stained_glass_pane",
"minecraft:gray_stained_glass_pane",
"minecraft:light_gray_stained_glass_pane",
"minecraft:cyan_stained_glass_pane",
"minecraft:purple_stained_glass_pane",
"minecraft:blue_stained_glass_pane",
"minecraft:brown_stained_glass_pane",
"minecraft:green_stained_glass_pane",
"minecraft:red_stained_glass_pane",
"minecraft:black_stained_glass_pane",
"minecraft:prismarine",
"minecraft:prismarine_bricks",
"minecraft:dark_prismarine",
"minecraft:prismarine_stairs",
"minecraft:prismarine_brick_stairs",
"minecraft:dark_prismarine_stairs",
"minecraft:sea_lantern",
"minecraft:red_sandstone",
"minecraft:chiseled_red_sandstone",
"minecraft:cut_red_sandstone",
"minecraft:red_sandstone_stairs",
"minecraft:repeating_command_block",
"minecraft:chain_command_block",
"minecraft:magma_block",
"minecraft:nether_wart_block",
"minecraft:warped_wart_block",
"minecraft:red_nether_bricks",
"minecraft:bone_block",
"minecraft:structure_void",
"minecraft:shulker_box",
"minecraft:white_shulker_box",
"minecraft:orange_shulker_box",
"minecraft:magenta_shulker_box",
"minecraft:light_blue_shulker_box",
"minecraft:yellow_shulker_box",
"minecraft:lime_shulker_box",
"minecraft:pink_shulker_box",
"minecraft:gray_shulker_box",
"minecraft:light_gray_shulker_box",
"minecraft:cyan_shulker_box",
"minecraft:purple_shulker_box",
"minecraft:blue_shulker_box",
"minecraft:brown_shulker_box",
"minecraft:green_shulker_box",
"minecraft:red_shulker_box",
"minecraft:black_shulker_box",
"minecraft:white_glazed_terracotta",
"minecraft:orange_glazed_terracotta",
"minecraft:magenta_glazed_terracotta",
"minecraft:light_blue_glazed_terracotta",
"minecraft:yellow_glazed_terracotta",
"minecraft:lime_glazed_terracotta",
"minecraft:pink_glazed_terracotta",
"minecraft:gray_glazed_terracotta",
"minecraft:light_gray_glazed_terracotta",
"minecraft:cyan_glazed_terracotta",
"minecraft:purple_glazed_terracotta",
"minecraft:blue_glazed_terracotta",
"minecraft:brown_glazed_terracotta",
"minecraft:green_glazed_terracotta",
"minecraft:red_glazed_terracotta",
"minecraft:black_glazed_terracotta",
"minecraft:white_concrete",
"minecraft:orange_concrete",
"minecraft:magenta_concrete",
"minecraft:light_blue_concrete",
"minecraft:yellow_concrete",
"minecraft:lime_concrete",
"minecraft:pink_concrete",
"minecraft:gray_concrete",
"minecraft:light_gray_concrete",
"minecraft:cyan_concrete",
"minecraft:purple_concrete",
"minecraft:blue_concrete",
"minecraft:brown_concrete",
"minecraft:green_concrete",
"minecraft:red_concrete",
"minecraft:black_concrete",
"minecraft:white_concrete_powder",
"minecraft:orange_concrete_powder",
"minecraft:magenta_concrete_powder",
"minecraft:light_blue_concrete_powder",
"minecraft:yellow_concrete_powder",
"minecraft:lime_concrete_powder",
"minecraft:pink_concrete_powder",
"minecraft:gray_concrete_powder",
"minecraft:light_gray_concrete_powder",
"minecraft:cyan_concrete_powder",
"minecraft:purple_concrete_powder",
"minecraft:blue_concrete_powder",
"minecraft:brown_concrete_powder",
"minecraft:green_concrete_powder",
"minecraft:red_concrete_powder",
"minecraft:black_concrete_powder",
"minecraft:turtle_egg",
"minecraft:dead_tube_coral_block",
"minecraft:dead_brain_coral_block",
"minecraft:dead_bubble_coral_block",
"minecraft:dead_fire_coral_block",
"minecraft:dead_horn_coral_block",
"minecraft:tube_coral_block",
"minecraft:brain_coral_block",
"minecraft:bubble_coral_block",
"minecraft:fire_coral_block",
"minecraft:horn_coral_block",
"minecraft:tube_coral",
"minecraft:brain_coral",
"minecraft:bubble_coral",
"minecraft:fire_coral",
"minecraft:horn_coral",
"minecraft:dead_brain_coral",
"minecraft:dead_bubble_coral",
"minecraft:dead_fire_coral",
"minecraft:dead_horn_coral",
"minecraft:dead_tube_coral",
"minecraft:tube_coral_fan",
"minecraft:brain_coral_fan",
"minecraft:bubble_coral_fan",
"minecraft:fire_coral_fan",
"minecraft:horn_coral_fan",
"minecraft:dead_tube_coral_fan",
"minecraft:dead_brain_coral_fan",
"minecraft:dead_bubble_coral_fan",
"minecraft:dead_fire_coral_fan",
"minecraft:dead_horn_coral_fan",
"minecraft:blue_ice",
"minecraft:conduit",
"minecraft:polished_granite_stairs",
"minecraft:smooth_red_sandstone_stairs",
"minecraft:mossy_stone_brick_stairs",
"minecraft:polished_diorite_stairs",
"minecraft:mossy_cobblestone_stairs",
"minecraft:end_stone_brick_stairs",
"minecraft:stone_stairs",
"minecraft:smooth_sandstone_stairs",
"minecraft:smooth_quartz_stairs",
"minecraft:granite_stairs",
"minecraft:andesite_stairs",
"minecraft:red_nether_brick_stairs",
"minecraft:polished_andesite_stairs",
"minecraft:diorite_stairs",
"minecraft:cobbled_deepslate_stairs",
"minecraft:polished_deepslate_stairs",
"minecraft:deepslate_brick_stairs",
"minecraft:deepslate_tile_stairs",
"minecraft:polished_granite_slab",
"minecraft:smooth_red_sandstone_slab",
"minecraft:mossy_stone_brick_slab",
"minecraft:polished_diorite_slab",
"minecraft:mossy_cobblestone_slab",
"minecraft:end_stone_brick_slab",
"minecraft:smooth_sandstone_slab",
"minecraft:smooth_quartz_slab",
"minecraft:granite_slab",
"minecraft:andesite_slab",
"minecraft:red_nether_brick_slab",
"minecraft:polished_andesite_slab",
"minecraft:diorite_slab",
"minecraft:cobbled_deepslate_slab",
"minecraft:polished_deepslate_slab",
"minecraft:deepslate_brick_slab",
"minecraft:deepslate_tile_slab",
"minecraft:scaffolding",
"minecraft:redstone_torch",
"minecraft:redstone_block",
"minecraft:repeater",
"minecraft:comparator",
"minecraft:piston",
"minecraft:sticky_piston",
"minecraft:slime_block",
"minecraft:honey_block",
"minecraft:observer",
"minecraft:hopper",
"minecraft:dispenser",
"minecraft:dropper",
"minecraft:lectern",
"minecraft:target",
"minecraft:lever",
"minecraft:lightning_rod",
"minecraft:daylight_detector",
"minecraft:sculk_sensor",
"minecraft:tripwire_hook",
"minecraft:trapped_chest",
"minecraft:tnt",
"minecraft:redstone_lamp",
"minecraft:note_block",
"minecraft:stone_button",
"minecraft:polished_blackstone_button",
"minecraft:oak_button",
"minecraft:spruce_button",
"minecraft:birch_button",
"minecraft:jungle_button",
"minecraft:acacia_button",
"minecraft:dark_oak_button",
"minecraft:crimson_button",
"minecraft:warped_button",
"minecraft:stone_pressure_plate",
"minecraft:polished_blackstone_pressure_plate",
"minecraft:light_weighted_pressure_plate",
"minecraft:heavy_weighted_pressure_plate",
"minecraft:oak_pressure_plate",
"minecraft:spruce_pressure_plate",
"minecraft:birch_pressure_plate",
"minecraft:jungle_pressure_plate",
"minecraft:acacia_pressure_plate",
"minecraft:dark_oak_pressure_plate",
"minecraft:crimson_pressure_plate",
"minecraft:warped_pressure_plate",
"minecraft:iron_door",
"minecraft:oak_door",
"minecraft:spruce_door",
"minecraft:birch_door",
"minecraft:jungle_door",
"minecraft:acacia_door",
"minecraft:dark_oak_door",
"minecraft:crimson_door",
"minecraft:warped_door",
"minecraft:iron_trapdoor",
"minecraft:oak_trapdoor",
"minecraft:spruce_trapdoor",
"minecraft:birch_trapdoor",
"minecraft:jungle_trapdoor",
"minecraft:acacia_trapdoor",
"minecraft:dark_oak_trapdoor",
"minecraft:crimson_trapdoor",
"minecraft:warped_trapdoor",
"minecraft:oak_fence_gate",
"minecraft:spruce_fence_gate",
"minecraft:birch_fence_gate",
"minecraft:jungle_fence_gate",
"minecraft:acacia_fence_gate",
"minecraft:dark_oak_fence_gate",
"minecraft:crimson_fence_gate",
"minecraft:warped_fence_gate",
"minecraft:powered_rail",
"minecraft:detector_rail",
"minecraft:rail",
"minecraft:activator_rail",
"minecraft:structure_block",
"minecraft:jigsaw",
"minecraft:wheat",
"minecraft:oak_sign",
"minecraft:spruce_sign",
"minecraft:birch_sign",
"minecraft:jungle_sign",
"minecraft:acacia_sign",
"minecraft:dark_oak_sign",
"minecraft:crimson_sign",
"minecraft:warped_sign",
"minecraft:dried_kelp_block",
"minecraft:cake",
"minecraft:white_bed",
"minecraft:orange_bed",
"minecraft:magenta_bed",
"minecraft:light_blue_bed",
"minecraft:yellow_bed",
"minecraft:lime_bed",
"minecraft:pink_bed",
"minecraft:gray_bed",
"minecraft:light_gray_bed",
"minecraft:cyan_bed",
"minecraft:purple_bed",
"minecraft:blue_bed",
"minecraft:brown_bed",
"minecraft:green_bed",
"minecraft:red_bed",
"minecraft:black_bed",
"minecraft:nether_wart",
"minecraft:brewing_stand",
"minecraft:cauldron",
"minecraft:flower_pot",
"minecraft:skeleton_skull",
"minecraft:wither_skeleton_skull",
"minecraft:player_head",
"minecraft:zombie_head",
"minecraft:creeper_head",
"minecraft:dragon_head",
"minecraft:white_banner",
"minecraft:orange_banner",
"minecraft:magenta_banner",
"minecraft:light_blue_banner",
"minecraft:yellow_banner",
"minecraft:lime_banner",
"minecraft:pink_banner",
"minecraft:gray_banner",
"minecraft:light_gray_banner",
"minecraft:cyan_banner",
"minecraft:purple_banner",
"minecraft:blue_banner",
"minecraft:brown_banner",
"minecraft:green_banner",
"minecraft:red_banner",
"minecraft:black_banner",
"minecraft:loom",
"minecraft:composter",
"minecraft:barrel",
"minecraft:smoker",
"minecraft:blast_furnace",
"minecraft:cartography_table",
"minecraft:fletching_table",
"minecraft:grindstone",
"minecraft:smithing_table",
"minecraft:stonecutter",
"minecraft:bell",
"minecraft:lantern",
"minecraft:soul_lantern",
"minecraft:campfire",
"minecraft:soul_campfire",
"minecraft:shroomlight",
"minecraft:bee_nest",
"minecraft:beehive",
"minecraft:honeycomb_block",
"minecraft:lodestone",
"minecraft:crying_obsidian",
"minecraft:blackstone",
"minecraft:blackstone_slab",
"minecraft:blackstone_stairs",
"minecraft:gilded_blackstone",
"minecraft:polished_blackstone",
"minecraft:polished_blackstone_slab",
"minecraft:polished_blackstone_stairs",
"minecraft:chiseled_polished_blackstone",
"minecraft:polished_blackstone_bricks",
"minecraft:polished_blackstone_brick_slab",
"minecraft:polished_blackstone_brick_stairs",
"minecraft:cracked_polished_blackstone_bricks",
"minecraft:respawn_anchor",
"minecraft:candle",
"minecraft:white_candle",
"minecraft:orange_candle",
"minecraft:magenta_candle",
"minecraft:light_blue_candle",
"minecraft:yellow_candle",
"minecraft:lime_candle",
"minecraft:pink_candle",
"minecraft:gray_candle",
"minecraft:light_gray_candle",
"minecraft:cyan_candle",
"minecraft:purple_candle",
"minecraft:blue_candle",
"minecraft:brown_candle",
"minecraft:green_candle",
"minecraft:red_candle",
"minecraft:black_candle",
"minecraft:small_amethyst_bud",
"minecraft:medium_amethyst_bud",
"minecraft:large_amethyst_bud",
"minecraft:amethyst_cluster",
"minecraft:pointed_dripstone",
"minecraft:water",
"minecraft:lava",
"minecraft:tall_seagrass",
"minecraft:piston_head",
"minecraft:moving_piston",
"minecraft:wall_torch",
"minecraft:fire",
"minecraft:soul_fire",
"minecraft:redstone_wire",
"minecraft:oak_wall_sign",
"minecraft:spruce_wall_sign",
"minecraft:birch_wall_sign",
"minecraft:acacia_wall_sign",
"minecraft:jungle_wall_sign",
"minecraft:dark_oak_wall_sign",
"minecraft:redstone_wall_torch",
"minecraft:soul_wall_torch",
"minecraft:nether_portal",
"minecraft:attached_pumpkin_stem",
"minecraft:attached_melon_stem",
"minecraft:pumpkin_stem",
"minecraft:melon_stem",
"minecraft:water_cauldron",
"minecraft:lava_cauldron",
"minecraft:powder_snow_cauldron",
"minecraft:end_portal",
"minecraft:cocoa",
"minecraft:tripwire",
"minecraft:potted_oak_sapling",
"minecraft:potted_spruce_sapling",
"minecraft:potted_birch_sapling",
"minecraft:potted_jungle_sapling",
"minecraft:potted_acacia_sapling",
"minecraft:potted_dark_oak_sapling",
"minecraft:potted_fern",
"minecraft:potted_dandelion",
"minecraft:potted_poppy",
"minecraft:potted_blue_orchid",
"minecraft:potted_allium",
"minecraft:potted_azure_bluet",
"minecraft:potted_red_tulip",
"minecraft:potted_orange_tulip",
"minecraft:potted_white_tulip",
"minecraft:potted_pink_tulip",
"minecraft:potted_oxeye_daisy",
"minecraft:potted_cornflower",
"minecraft:potted_lily_of_the_valley",
"minecraft:potted_wither_rose",
"minecraft:potted_red_mushroom",
"minecraft:potted_brown_mushroom",
"minecraft:potted_dead_bush",
"minecraft:potted_cactus",
"minecraft:carrots",
"minecraft:potatoes",
"minecraft:skeleton_wall_skull",
"minecraft:wither_skeleton_wall_skull",
"minecraft:zombie_wall_head",
"minecraft:player_wall_head",
"minecraft:creeper_wall_head",
"minecraft:dragon_wall_head",
"minecraft:white_wall_banner",
"minecraft:orange_wall_banner",
"minecraft:magenta_wall_banner",
"minecraft:light_blue_wall_banner",
"minecraft:yellow_wall_banner",
"minecraft:lime_wall_banner",
"minecraft:pink_wall_banner",
"minecraft:gray_wall_banner",
"minecraft:light_gray_wall_banner",
"minecraft:cyan_wall_banner",
"minecraft:purple_wall_banner",
"minecraft:blue_wall_banner",
"minecraft:brown_wall_banner",
"minecraft:green_wall_banner",
"minecraft:red_wall_banner",
"minecraft:black_wall_banner",
"minecraft:beetroots",
"minecraft:end_gateway",
"minecraft:frosted_ice",
"minecraft:kelp_plant",
"minecraft:dead_tube_coral_wall_fan",
"minecraft:dead_brain_coral_wall_fan",
"minecraft:dead_bubble_coral_wall_fan",
"minecraft:dead_fire_coral_wall_fan",
"minecraft:dead_horn_coral_wall_fan",
"minecraft:tube_coral_wall_fan",
"minecraft:brain_coral_wall_fan",
"minecraft:bubble_coral_wall_fan",
"minecraft:fire_coral_wall_fan",
"minecraft:horn_coral_wall_fan",
"minecraft:bamboo_sapling",
"minecraft:potted_bamboo",
"minecraft:void_air",
"minecraft:cave_air",
"minecraft:bubble_column",
"minecraft:sweet_berry_bush",
"minecraft:weeping_vines_plant",
"minecraft:twisting_vines_plant",
"minecraft:crimson_wall_sign",
"minecraft:warped_wall_sign",
"minecraft:potted_crimson_fungus",
"minecraft:potted_warped_fungus",
"minecraft:potted_crimson_roots",
"minecraft:potted_warped_roots",
"minecraft:candle_cake",
"minecraft:white_candle_cake",
"minecraft:orange_candle_cake",
"minecraft:magenta_candle_cake",
"minecraft:light_blue_candle_cake",
"minecraft:yellow_candle_cake",
"minecraft:lime_candle_cake",
"minecraft:pink_candle_cake",
"minecraft:gray_candle_cake",
"minecraft:light_gray_candle_cake",
"minecraft:cyan_candle_cake",
"minecraft:purple_candle_cake",
"minecraft:blue_candle_cake",
"minecraft:brown_candle_cake",
"minecraft:green_candle_cake",
"minecraft:red_candle_cake",
"minecraft:black_candle_cake",
"minecraft:powder_snow",
"minecraft:cave_vines",
"minecraft:cave_vines_plant",
"minecraft:big_dripleaf_stem",
"minecraft:potted_azalea_bush",
"minecraft:potted_flowering_azalea_bush"
]},
"obj-com-volmit-iris-engine-object-irispyramid": {"anyOf": [
{
"description": "Represents an procedural eliptical shape",
"type": "object",
"properties": {
"rarity": {
"type": "integer",
"minimum": 1,
"description": "rarity\nTypically a 1 in RARITY on a per fork basis\n \nInteger\n\n \n* Default Value is 1\n* Minimum allowed is 1"
},
"customBiome": {
"type": "string",
"$ref": "#/definitions/erzbiomes",
"description": "customBiome\nForce this cave to only generate the specified custom biome\n \nIris Biome\n\n \n* Default Value is \nMust be a valid biomes (use ctrl+space for auto complete!)"
},
"baseWidth": {
"anyOf": [
{
"!required": false,
"type": "object",
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisstyledrange",
"description": "baseWidth\nThe styled random radius for x\n \nStyledRange (Object)\nRepresents a range styled with a custom generator\n \nYou can instead specify \"snippet/style-range/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
{
"type": "string",
"$ref": "#/definitions/enum-snippet-style-range",
"description": "baseWidth\nThe styled random radius for x\n \nStyledRange (Object)\nRepresents a range styled with a custom generator\n \nYou can instead specify \"snippet/style-range/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
],
"description": "baseWidth\nThe styled random radius for x\n \nStyledRange (Object)\nRepresents a range styled with a custom generator\n \nYou can instead specify \"snippet/style-range/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
}
},
{"type": "string"}
]},
"obj-com-volmit-iris-engine-object-irissphere": {"anyOf": [
{
"description": "Represents an procedural eliptical shape",
"type": "object",
"properties": {
"rarity": {
"type": "integer",
"minimum": 1,
"description": "rarity\nTypically a 1 in RARITY on a per fork basis\n \nInteger\n\n \n* Default Value is 1\n* Minimum allowed is 1"
},
"customBiome": {
"type": "string",
"$ref": "#/definitions/erzbiomes",
"description": "customBiome\nForce this cave to only generate the specified custom biome\n \nIris Biome\n\n \n* Default Value is \nMust be a valid biomes (use ctrl+space for auto complete!)"
},
"radius": {
"anyOf": [
{
"!required": false,
"type": "object",
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisstyledrange",
"description": "radius\nThe styled random radius for x\n \nStyledRange (Object)\nRepresents a range styled with a custom generator\n \nYou can instead specify \"snippet/style-range/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
{
"type": "string",
"$ref": "#/definitions/enum-snippet-style-range",
"description": "radius\nThe styled random radius for x\n \nStyledRange (Object)\nRepresents a range styled with a custom generator\n \nYou can instead specify \"snippet/style-range/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
],
"description": "radius\nThe styled random radius for x\n \nStyledRange (Object)\nRepresents a range styled with a custom generator\n \nYou can instead specify \"snippet/style-range/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
}
},
{"type": "string"}
]},
"enum-snippet-axis-rotation": {"enum": []},
"erzspawners": {"enum": [
"frozen/land-hostile",
"tropical/land-hostile",
"tundra/land-cave",
"tropical/beach",
"pillager-respawn",
"tropical/land-hostile-day",
"pillager",
"temperate/land-cave",
"dank",
"tropical/land-cave",
"silverfish",
"swamp/land-hostile",
"swamp/land-passive",
"hot/land-cave",
"villager",
"tundra/land-passive",
"frozen/land-passive",
"swamp/land-cave",
"hives",
"mushroom/land-passive",
"frozen/land-cave",
"mushroom/land-hostile",
"hot/land-passive",
"mushroom/land-cave",
"temperate/land-passive",
"temperate/land-hostile",
"tundra/land-hostile",
"hot/land-hostile",
"tropical/land-passive"
]},
"obj-com-volmit-iris-engine-object-irisravineplacer": {"anyOf": [
{
"description": "Translate objects",
"type": "object",
"properties": {
"rarity": {
"type": "integer",
"minimum": 1,
"description": "rarity\nTypically a 1 in RARITY on a per chunk/fork basis\n \nInteger\n\n \n* Default Value is 15\n* Minimum allowed is 1"
},
"ravine": {
"type": "string",
"minLength": 1,
"$ref": "#/definitions/erzravines",
"description": "ravine\nThe ravine to place\n \nIris Ravine\n\n* Minimum Length allowed is 1\nMust be a valid ravines (use ctrl+space for auto complete!)"
}
}
},
{"type": "string"}
]},
"erzobjects": {"enum": [
"jigsaw/fossil/skull_3_coal",
"structures/portal3",
"jigsaw/fossil/spine_1_coal",
"structures/portal4",
"structures/portal5",
"structures/portal6",
"structures/portal7",
"structures/portal8",
"structures/portal9",
"trees/birch/variantforest4",
"trees/birch/variantforest3",
"trees/birch/variantforest2",
"trees/birch/variantforest1",
"trees/birch/variantforest8",
"trees/birch/variantforest7",
"structures/portal1",
"trees/birch/variantforest6",
"structures/portal2",
"trees/birch/variantforest5",
"trees/birch/variantforest9",
"jigsaw/nether_fossils/fossil_1",
"jigsaw/pyramid/pyramid1",
"trees/mushroom/lumo10",
"trees/spruce/unfrostedmed3",
"trees/spruce/unfrostedmed4",
"trees/spruce/unfrostedmed1",
"trees/spruce/unfrostedmed2",
"trees/acacia/savana5",
"trees/mixed/honey9",
"trees/mixed/honey5",
"trees/mixed/honey6",
"trees/mixed/honey7",
"trees/mixed/honey8",
"trees/mixed/honey1",
"trees/mixed/honey2",
"trees/mixed/honey3",
"trees/mixed/honey4",
"trees/acacia/savannaF11",
"trees/acacia/savannaF10",
"trees/birch/forest1",
"trees/birch/forest2",
"trees/birch/forest3",
"trees/birch/forest4",
"trees/spruce/unfrostedmed7",
"trees/spruce/unfrostedmed8",
"trees/acacia/savannaF17",
"trees/spruce/unfrostedmed5",
"trees/acacia/savannaF16",
"trees/spruce/unfrostedmed6",
"trees/acacia/savana1",
"trees/acacia/savannaF15",
"trees/acacia/savana2",
"trees/acacia/savannaF14",
"trees/acacia/savana3",
"trees/acacia/savannaF13",
"trees/acacia/savana4",
"trees/oak/lponderosa8",
"clutter/corazoncaido",
"trees/oak/lponderosa7",
"jigsaw/end_city/tower_piece",
"trees/oak/lponderosa9",
"jigsaw/nether_fossils/fossil_5",
"jigsaw/nether_fossils/fossil_4",
"jigsaw/nether_fossils/fossil_3",
"trees/oak/lponderosa2",
"jigsaw/nether_fossils/fossil_2",
"trees/oak/lponderosa1",
"jigsaw/nether_fossils/fossil_9",
"trees/oak/lponderosa4",
"jigsaw/nether_fossils/fossil_8",
"trees/oak/lponderosa3",
"jigsaw/nether_fossils/fossil_7",
"trees/oak/lponderosa6",
"jigsaw/nether_fossils/fossil_6",
"trees/oak/lponderosa5",
"trees/birch/antioch3b",
"trees/sakura/ogbase1",
"trees/sakura/ogbase2",
"trees/birch/generic26",
"trees/birch/generic27",
"trees/birch/generic24",
"trees/birch/generic25",
"trees/birch/generic28",
"trees/birch/generic29",
"jigsaw/murky_stronghold/c-x-6",
"jigsaw/murky_stronghold/c-x-5",
"clutter/pumpkins6",
"jigsaw/murky_stronghold/c-x-4",
"clutter/pumpkins5",
"jigsaw/murky_stronghold/c-x-3",
"clutter/pumpkins4",
"clutter/pumpkins3",
"clutter/pumpkins2",
"clutter/pumpkins1",
"trees/spruce/sfrostgeneric10",
"trees/spruce/sfrostgeneric11",
"jigsaw/murky_stronghold/c-x-2",
"trees/spruce/sfrostgeneric12",
"jigsaw/murky_stronghold/c-x-1",
"trees/spruce/sfrostgeneric13",
"trees/spruce/sfrostgeneric14",
"trees/spruce/sfrostgeneric15",
"trees/spruce/sfrostgeneric16",
"trees/birch/antioch4b",
"trees/birch/generic30",
"trees/spruce/sfrostgeneric17",
"trees/spruce/sfrostgeneric18",
"trees/spruce/sfrostgeneric19",
"trees/birch/generic31",
"void/gvoid",
"trees/spruce/aridgeneric4",
"trees/spruce/aridgeneric5",
"trees/spruce/aridgeneric1",
"trees/spruce/aridgeneric2",
"trees/spruce/aridgeneric3",
"trees/spruce/sfrostgeneric20",
"jigsaw/house-norm/Med10",
"trees/birch/antioch5b",
"clutter/sphinx1",
"jigsaw/pyramid/pyramid45",
"jigsaw/underwater_ruin/brick_1",
"jigsaw/underwater_ruin/brick_2",
"structures/portal10",
"trees/birch/antioch6b",
"trees/birch/generic11",
"trees/birch/generic12",
"trees/oak/deadfallen1",
"trees/birch/generic10",
"jigsaw/murky_stronghold/fc-n-1",
"trees/birch/generic15",
"jigsaw/murky_stronghold/fc-n-2",
"trees/birch/generic16",
"trees/birch/generic13",
"trees/birch/generic14",
"trees/birch/generic19",
"trees/birch/generic17",
"trees/birch/generic18",
"structures/shiprightsideupfronthalf",
"jigsaw/murky_stronghold/fc-n-3",
"jigsaw/murky_stronghold/fc-n-4",
"jigsaw/underwater_ruin/brick_5",
"trees/darkoak/smolgeneric11",
"jigsaw/underwater_ruin/brick_6",
"trees/darkoak/smolgeneric12",
"jigsaw/underwater_ruin/brick_3",
"jigsaw/underwater_ruin/brick_4",
"trees/darkoak/smolgeneric10",
"structures/BarcoPirataGriffer",
"trees/darkoak/smolgeneric15",
"trees/darkoak/smolgeneric16",
"jigsaw/underwater_ruin/brick_7",
"trees/darkoak/smolgeneric13",
"jigsaw/underwater_ruin/brick_8",
"trees/darkoak/smolgeneric14",
"trees/birch/generic22",
"trees/birch/generic23",
"trees/birch/generic20",
"trees/birch/generic21",
"trees/mixed/smoakog80",
"trees/acacia/thin1",
"trees/darkoak/smolgeneric19",
"trees/darkoak/smolgeneric17",
"trees/darkoak/smolgeneric18",
"trees/darkoak/smolgeneric22",
"trees/darkoak/smolgeneric23",
"trees/darkoak/smolgeneric20",
"trees/darkoak/smolgeneric21",
"trees/darkoak/smolgeneric26",
"trees/darkoak/smolgeneric27",
"trees/darkoak/smolgeneric24",
"trees/darkoak/smolgeneric25",
"trees/darkoak/talldrift9",
"trees/darkoak/talldrift8",
"trees/darkoak/talldrift7",
"trees/darkoak/talldrift6",
"trees/darkoak/smolgeneric28",
"trees/darkoak/smolgeneric29",
"jigsaw/desert-pyramid/bottom",
"trees/darkoak/smolgeneric31",
"trees/oak/mdeadwood2",
"trees/oak/mdeadwood3",
"trees/birch/variantforest20",
"trees/darkoak/smolgeneric30",
"jigsaw/end_city/fat_tower_top",
"trees/mushroom/xredgeneric10",
"trees/oak/mdeadwood1",
"trees/mixed/dotree3",
"trees/mixed/dotree4",
"jigsaw/murky_stronghold/f-n-1",
"trees/mixed/dotree5",
"trees/mixed/dotree6",
"structures/presentsupermassivebluea12",
"trees/mixed/dotree1",
"trees/mixed/dotree2",
"trees/birch/variantforest18",
"clutter/log",
"trees/birch/variantforest19",
"jigsaw/murky_stronghold/f-n-3",
"jigsaw/murky_stronghold/f-n-2",
"trees/spruce/lushgenericpine10",
"jigsaw/murky_stronghold/f-n-4",
"trees/birch/variantforest12",
"trees/birch/variantforest13",
"trees/birch/variantforest10",
"trees/birch/variantforest11",
"trees/birch/variantforest16",
"trees/birch/variantforest17",
"trees/birch/variantforest14",
"clutter/genericgrave1",
"trees/birch/variantforest15",
"trees/darkoak/talldrift1",
"trees/darkoak/talldrift5",
"trees/darkoak/talldrift4",
"trees/darkoak/talldrift3",
"trees/darkoak/talldrift2",
"clutter/shrub10",
"clutter/shrub12",
"clutter/shrub11",
"clutter/obelisk6",
"clutter/obelisk5",
"clutter/obelisk7",
"clutter/obelisk2",
"clutter/obelisk1",
"clutter/obelisk4",
"clutter/obelisk3",
"trees/mixed/dotree7",
"trees/mixed/dotree8",
"trees/mixed/dotree9",
"jigsaw/village-bits/bland-nes-1",
"jigsaw/village-bits/bland-nes-2",
"jigsaw/village-bits/bland-x-3",
"jigsaw/village-bits/bland-x-4",
"jigsaw/village-bits/bland-x-5",
"jigsaw/village-bits/bland-nes-3",
"jigsaw/village-bits/bland-nes-4",
"jigsaw/village-bits/bland-nes-5",
"jigsaw/village-bits/bland-x-1",
"jigsaw/village-bits/bland-x-2",
"jigsaw/village-bits/hay-e-4",
"jigsaw/village-bits/hay-e-3",
"jigsaw/village-bits/hay-e-5",
"trees/mixed/medbleedingserralita1",
"trees/mixed/medbleedingserralita2",
"jigsaw/village-bits/hay-e-2",
"jigsaw/village-bits/hay-e-1",
"trees/oak/smol10",
"trees/oak/smol11",
"clutter/grave1",
"structures/tentaclecold8",
"structures/tentaclecold7",
"structures/tentaclecold6",
"structures/tentaclecold5",
"trees/bonsai/smfallen1",
"trees/oak/smol12",
"trees/oak/smol13",
"trees/mushroom/blackgeneric10",
"trees/oak/smol14",
"trees/oak/smol15",
"structures/tentaclecold4",
"trees/oak/croak11",
"structures/shiprightsideupbackhalfdegraded",
"structures/tentaclecold3",
"trees/oak/croak12",
"structures/tentaclecold2",
"structures/shipsidewaysfulldegraded",
"structures/tentaclecold1",
"trees/oak/croak10",
"trees/oak/croak15",
"trees/oak/croak16",
"trees/oak/croak13",
"trees/oak/croak14",
"structures/presentsupermassivepurple5",
"trees/mixed/bleedingserralita4",
"trees/mixed/bleedingserralita3",
"trees/mixed/bleedingserralita6",
"trees/mixed/bleedingserralita5",
"trees/mixed/bleedingserralita8",
"trees/mixed/bleedingserralita7",
"trees/mixed/bleedingserralita9",
"jigsaw/igloo/bottom",
"structures/cave6",
"structures/cave4",
"trees/mixed/bleedingserralita2",
"structures/cave5",
"trees/mixed/bleedingserralita1",
"structures/cave2",
"structures/cave3",
"structures/cave1",
"trees/mixed/medbleedingserralita5",
"trees/mixed/medbleedingserralita6",
"trees/mushroom/purplegeneric10",
"trees/mixed/medbleedingserralita3",
"trees/mixed/medbleedingserralita4",
"trees/mixed/medbleedingserralita9",
"trees/mixed/medbleedingserralita7",
"trees/mixed/medbleedingserralita8",
"trees/mixed/tourmalineproblem1",
"trees/mixed/tourmalineproblem2",
"clutter/camp5",
"clutter/medtourmaclutt2",
"clutter/medtourmaclutt3",
"clutter/camp3",
"clutter/medtourmaclutt4",
"clutter/camp4",
"clutter/medtourmaclutt5",
"clutter/camp1",
"clutter/medtourmaclutt6",
"clutter/camp2",
"clutter/medtourmaclutt7",
"clutter/medtourmaclutt8",
"clutter/medtourmaclutt9",
"clutter/medtourmaclutt1",
"trees/darkoak/smolgeneric1",
"trees/darkoak/smolgeneric2",
"trees/darkoak/smolgeneric3",
"trees/darkoak/smolgeneric4",
"trees/darkoak/smolgeneric5",
"trees/darkoak/smolgeneric6",
"trees/darkoak/smolgeneric7",
"trees/darkoak/smolgeneric8",
"trees/darkoak/smolgeneric9",
"jigsaw/void/void",
"trees/oak/mroofed10",
"jigsaw/fossil/skull_1_coal",
"structures/deepslate3",
"structures/deepslate2",
"jigsaw/igloo/middle",
"structures/deepslate1",
"structures/shipsidewaysfronthalf",
"trees/oak/mroofed11",
"trees/oak/mroofed12",
"trees/sproak/generic10",
"trees/sproak/generic12",
"trees/sproak/generic11",
"structures/shipwithmastdegraded",
"jigsaw/murky_stronghold/f-sw-3",
"jigsaw/murky_stronghold/f-sw-2",
"clutter/bonespire20",
"jigsaw/murky_stronghold/f-sw-4",
"jigsaw/murky_stronghold/f-sw-1",
"clutter/oakshrub4",
"jigsaw/mansion/mansion_vanilla_3",
"clutter/oakshrub3",
"jigsaw/mansion/mansion_vanilla_2",
"trees/oak/omni1",
"clutter/oakshrub2",
"clutter/ellipsoid1",
"clutter/oakshrub1",
"trees/darkoak/floral1",
"clutter/bonespire14",
"trees/darkoak/medgeneric2",
"clutter/bonespire15",
"trees/darkoak/medgeneric1",
"clutter/bonespire16",
"trees/darkoak/medgeneric4",
"clutter/bonespire17",
"trees/darkoak/medgeneric3",
"clutter/bonespire18",
"trees/darkoak/medgeneric6",
"clutter/bonespire19",
"trees/darkoak/medgeneric5",
"trees/darkoak/medgeneric8",
"trees/darkoak/medgeneric7",
"trees/darkoak/medgeneric9",
"clutter/bonespire10",
"jigsaw/mansion/mansion_vanilla_1",
"clutter/bonespire11",
"clutter/bonespire12",
"clutter/bonespire13",
"trees/bonsai/big-6",
"trees/bonsai/big-7",
"jigsaw/jungle-pyramid/jungle_pyramid",
"trees/bonsai/big-4",
"trees/bonsai/big-5",
"trees/bonsai/big-2",
"trees/bonsai/big-3",
"trees/bonsai/big-1",
"clutter/arbusto2",
"jigsaw/nether_fossils/fossil_12",
"trees/mushroom/xredgeneric8",
"clutter/arbusto3",
"jigsaw/igloo/top1",
"jigsaw/nether_fossils/fossil_11",
"trees/mushroom/xredgeneric7",
"jigsaw/nether_fossils/fossil_10",
"trees/mushroom/xredgeneric6",
"clutter/arbusto1",
"trees/mushroom/xredgeneric5",
"clutter/stoneclutt5",
"trees/mushroom/xredgeneric4",
"clutter/stoneclutt6",
"trees/mushroom/xredgeneric3",
"clutter/stoneclutt7",
"jigsaw/igloo/top2",
"jigsaw/nether_fossils/fossil_14",
"trees/mushroom/xredgeneric2",
"jigsaw/nether_fossils/fossil_13",
"trees/mushroom/xredgeneric1",
"clutter/stoneclutt1",
"trees/oak/sponderosa9",
"clutter/stoneclutt2",
"trees/oak/sponderosa8",
"clutter/stoneclutt3",
"clutter/stoneclutt4",
"trees/mushroom/xredgeneric9",
"trees/mixed/tredwood10",
"trees/oak/mponderosa7",
"trees/oak/mponderosa6",
"trees/oak/mponderosa9",
"trees/oak/mponderosa8",
"trees/oak/mponderosa3",
"trees/oak/mponderosa2",
"trees/oak/mponderosa5",
"trees/oak/mponderosa4",
"trees/oak/mponderosa1",
"clutter/tntower1",
"structures/presentred13",
"trees/oak/sponderosa1",
"trees/oak/sponderosa3",
"trees/oak/sponderosa2",
"trees/oak/sponderosa5",
"trees/oak/sponderosa4",
"jigsaw/murky_stronghold/fc-ns-4",
"trees/oak/sponderosa7",
"trees/oak/sponderosa6",
"jigsaw/murky_stronghold/fc-ns-2",
"jigsaw/murky_stronghold/fc-ns-3",
"jigsaw/murky_stronghold/fc-ns-1",
"trees/sproak/sp1",
"trees/sproak/sp5",
"trees/sproak/sp4",
"trees/sproak/sp3",
"trees/sproak/sp2",
"trees/sproak/sp6",
"trees/mixed/tourmalinelarge10",
"trees/mushroom/mushclut10",
"clutter/shrub3",
"clutter/shrub2",
"clutter/shrub1",
"trees/bonsai/frolow13",
"trees/bonsai/frolow14",
"trees/bonsai/frolow11",
"trees/bonsai/frolow12",
"trees/bonsai/frolow10",
"trees/darkoak/tallgeneric1",
"trees/darkoak/tallgeneric2",
"trees/bonsai/frolow15",
"trees/bonsai/frolow16",
"trees/oak/smdeadwilt1",
"trees/oak/troofed10",
"structures/tentaclefire6",
"trees/mushroom/ice6",
"structures/tentaclefire5",
"trees/mushroom/ice7",
"structures/tentaclefire4",
"trees/mushroom/ice8",
"structures/tentaclefire3",
"trees/mushroom/ice9",
"structures/tentaclefire2",
"structures/tentaclefire1",
"trees/spruce/sprucetree-1",
"trees/mixed/largebleedingserralita1",
"trees/spruce/sprucetree-4",
"trees/spruce/sprucetree-5",
"trees/mixed/largebleedingserralita3",
"trees/spruce/sprucetree-2",
"trees/mixed/largebleedingserralita2",
"trees/mushroom/ice1",
"trees/spruce/sprucetree-3",
"structures/bonehand3",
"trees/mushroom/ice2",
"trees/spruce/sprucetree-8",
"structures/bonehand2",
"trees/mushroom/ice3",
"trees/spruce/sprucetree-9",
"trees/mushroom/ice4",
"trees/spruce/sprucetree-6",
"trees/mushroom/ice5",
"trees/spruce/sprucetree-7",
"structures/bonehand1",
"trees/mixed/largebleedingserralita5",
"light",
"trees/mixed/largebleedingserralita4",
"clutter/shrub7",
"clutter/shrub6",
"clutter/shrub5",
"clutter/shrub4",
"clutter/shrub9",
"clutter/shrub8",
"trees/jungle/vgeneric19",
"trees/jungle/vgeneric18",
"structures/crystal10",
"trees/jungle/vgeneric20",
"trees/jungle/vgeneric22",
"trees/jungle/vgeneric21",
"clutter/brksphinx1",
"structures/presentmediumred15",
"clutter/stoneboulder11",
"clutter/stoneboulder12",
"clutter/stoneboulder10",
"clutter/savrock8",
"clutter/savrock7",
"clutter/statue-villager-acacia",
"clutter/arbusto4",
"clutter/arbusto5",
"structures/shipgenericu",
"structures/shipgenericw",
"trees/jungle/vgeneric11",
"trees/jungle/vgeneric10",
"trees/jungle/vgeneric13",
"trees/jungle/vgeneric12",
"trees/jungle/vgeneric15",
"trees/jungle/vgeneric14",
"structures/shipgenericr",
"trees/jungle/vgeneric17",
"trees/jungle/vgeneric16",
"clutter/savrock4",
"clutter/savrock3",
"clutter/savrock6",
"clutter/savrock5",
"clutter/stoneboulder15",
"jigsaw/dungeon/spawner-room",
"clutter/savrock2",
"clutter/stoneboulder13",
"jigsaw/murky_stronghold/c-sw-3",
"clutter/savrock1",
"clutter/stoneboulder14",
"jigsaw/murky_stronghold/c-sw-4",
"jigsaw/murky_stronghold/c-sw-1",
"jigsaw/murky_stronghold/c-sw-2",
"structures/tower",
"structures/presentmediumbluea18",
"clutter/coralpurp3",
"trees/oak/denmyre2",
"trees/spruce/mevergreen1",
"clutter/coralpurp2",
"trees/oak/denmyre3",
"trees/spruce/mevergreen2",
"trees/oak/denmyre1",
"clutter/coralpurp1",
"jigsaw/village-bits/lantern-ne-5",
"trees/oak/denmyre8",
"structures/shipupsidedownfulldegraded",
"trees/oak/denmyre9",
"trees/oak/denmyre6",
"trees/oak/denmyre7",
"trees/oak/denmyre4",
"trees/spruce/mevergreen3",
"trees/oak/denmyre5",
"trees/spruce/xmasbaby5",
"structures/islhead1",
"trees/spruce/xmasbaby4",
"trees/spruce/xmasbaby1",
"trees/spruce/xmasbaby3",
"trees/spruce/xmasbaby2",
"trees/birch/antioch12",
"trees/birch/antioch13",
"trees/birch/antioch10",
"trees/birch/antioch11",
"trees/jungle/mgeneric1",
"trees/acacia/vexed3",
"clutter/gravelsplotch4",
"jigsaw/village-bits/lantern-ne-2",
"trees/acacia/vexed2",
"trees/jungle/mgeneric3",
"jigsaw/village-bits/lantern-ne-1",
"trees/acacia/vexed1",
"trees/jungle/mgeneric2",
"jigsaw/village-bits/lantern-ne-4",
"jigsaw/village-bits/lantern-ne-3",
"trees/jungle/mgeneric4",
"clutter/gravelsplotch1",
"clutter/gravelsplotch2",
"clutter/gravelsplotch3",
"clutter/lilly",
"structures/presentsupermassivegreen9",
"trees/mushroom/redgeneric1",
"trees/mushroom/redgeneric2",
"trees/mushroom/redgeneric5",
"trees/mushroom/redgeneric6",
"trees/mushroom/redgeneric3",
"trees/mushroom/redgeneric4",
"trees/mushroom/redgeneric9",
"trees/mushroom/redgeneric7",
"trees/mushroom/redgeneric8",
"trees/birch/antioch9",
"jigsaw/void/gvoid",
"trees/birch/smallgeneric11",
"trees/birch/smallgeneric10",
"jigsaw/pyramid/rpyramid-extreme",
"clutter/boulder10",
"clutter/boulder11",
"clutter/swordnp1",
"clutter/swordnp2",
"structures/presentsupermassiveyellowa2",
"clutter/boulder12",
"clutter/boulder13",
"clutter/boulder14",
"clutter/boulder15",
"structures/shipupsidedownbackhalf",
"trees/birch/antioch4",
"trees/birch/generic4",
"trees/sakura/mlarge8",
"trees/birch/antioch3",
"trees/birch/generic5",
"trees/sakura/mlarge9",
"trees/birch/antioch2",
"trees/birch/generic2",
"trees/birch/antioch1",
"trees/birch/generic3",
"trees/birch/antioch8",
"trees/sakura/mlarge4",
"trees/birch/antioch7",
"trees/birch/generic1",
"trees/sakura/mlarge5",
"trees/birch/antioch6",
"trees/sakura/mlarge6",
"trees/birch/antioch5",
"trees/sakura/mlarge7",
"trees/sakura/mlarge1",
"trees/sakura/mlarge2",
"trees/sakura/mlarge3",
"trees/birch/generic8",
"trees/birch/generic9",
"trees/birch/generic6",
"trees/birch/generic7",
"trees/oak/smdeadwood2",
"trees/oak/smdeadwood1",
"trees/oak/smdeadwood3",
"structures/shipgenericg",
"trees/oak/generic4",
"trees/oak/generic3",
"trees/oak/generic6",
"trees/oak/generic5",
"trees/oak/generic2",
"structures/shipgenericc",
"trees/oak/generic1",
"trees/jungle/spalm4",
"trees/jungle/spalm3",
"trees/jungle/spalm2",
"trees/jungle/spalm1",
"trees/darkoak/generic9",
"trees/darkoak/generic8",
"trees/jungle/cocogeneric1",
"trees/darkoak/generic7",
"trees/jungle/cocogeneric2",
"trees/darkoak/generic6",
"structures/presentsupermassiveorange7",
"trees/darkoak/generic5",
"trees/darkoak/generic4",
"trees/jungle/cocogeneric5",
"trees/darkoak/generic3",
"trees/darkoak/generic2",
"trees/jungle/cocogeneric3",
"trees/darkoak/generic1",
"trees/jungle/cocogeneric4",
"trees/jungle/spalm5",
"jigsaw/end_city/bridge_end",
"jigsaw/desert-pyramid/top",
"trees/sakura/genericsak5",
"trees/sakura/genericsak4",
"jigsaw/underwater_ruin/warm_6",
"trees/spruce/denmyre12",
"jigsaw/underwater_ruin/warm_5",
"trees/spruce/denmyre13",
"jigsaw/underwater_ruin/warm_8",
"trees/spruce/denmyre10",
"jigsaw/underwater_ruin/warm_7",
"trees/spruce/denmyre11",
"trees/spruce/denmyre16",
"trees/spruce/denmyre14",
"structures/shipwithmast",
"trees/spruce/denmyre15",
"jigsaw/house-norm/Med7",
"jigsaw/house-norm/Med6",
"jigsaw/house-norm/Med5",
"jigsaw/house-norm/Med4",
"jigsaw/underwater_ruin/warm_2",
"jigsaw/underwater_ruin/warm_1",
"jigsaw/house-norm/Med9",
"jigsaw/underwater_ruin/warm_4",
"jigsaw/house-norm/Med8",
"jigsaw/underwater_ruin/warm_3",
"trees/mixed/sandyjungle4",
"structures/presentsupermassivepurplea6",
"jigsaw/house-norm/Med3",
"jigsaw/house-norm/Med2",
"jigsaw/house-norm/Med1",
"trees/mixed/tredwoodbee1",
"trees/mixed/tredwoodbee3",
"trees/sakura/genericsak1",
"trees/mixed/sandyjungle1",
"trees/mixed/tredwoodbee2",
"trees/mixed/sandyjungle2",
"trees/sakura/genericsak3",
"trees/mixed/sandyjungle3",
"trees/mixed/tredwoodbee4",
"trees/sakura/genericsak2",
"trees/birch/largeponderosa20",
"clutter/statue-villager-plains",
"jigsaw/house-purjap/PurJap9",
"jigsaw/house-purjap/PurJap8",
"jigsaw/house-purjap/PurJap7",
"jigsaw/house-purjap/PurJap6",
"jigsaw/house-purjap/PurJap5",
"jigsaw/house-purjap/PurJap4",
"trees/birch/largeponderosa18",
"trees/birch/largeponderosa19",
"clutter/pond",
"trees/oak/shoakgeneric10",
"jigsaw/end_city/base_floor",
"trees/birch/largeponderosa14",
"trees/birch/largeponderosa15",
"trees/birch/largeponderosa16",
"trees/birch/largeponderosa17",
"trees/birch/largeponderosa10",
"trees/birch/largeponderosa11",
"trees/birch/largeponderosa12",
"trees/birch/largeponderosa13",
"jigsaw/house-purjap/PurJap3",
"jigsaw/house-purjap/PurJap2",
"jigsaw/house-purjap/PurJap1",
"trees/acacia/savannas9",
"trees/oak/foak1",
"trees/oak/mroofed8",
"trees/oak/mroofed9",
"jigsaw/pyramid/rpyramid",
"trees/oak/mroofed2",
"trees/spruce/vgeneric3",
"trees/oak/mroofed3",
"trees/spruce/vgeneric2",
"trees/spruce/vgeneric1",
"trees/oak/mroofed1",
"trees/oak/mroofed6",
"trees/oak/mroofed7",
"trees/oak/mroofed4",
"trees/oak/mroofed5",
"trees/birch/mediumgeneric2",
"trees/birch/mediumgeneric1",
"trees/spruce/vgeneric9",
"trees/birch/mediumgeneric3",
"trees/spruce/vgeneric8",
"trees/spruce/vgeneric7",
"trees/spruce/vgeneric6",
"trees/spruce/vgeneric5",
"trees/spruce/vgeneric4",
"trees/jungle/deligeneric6",
"trees/jungle/deligeneric5",
"trees/jungle/deligeneric4",
"trees/jungle/deligeneric3",
"jigsaw/pyramid/pyramidred45",
"trees/jungle/deligeneric2",
"trees/jungle/deligeneric1",
"jigsaw/village-bits/bland-ne-4",
"trees/spruce/vgeneric11",
"jigsaw/village-bits/bland-ne-5",
"trees/spruce/vgeneric12",
"trees/oak/shoakgeneric1",
"trees/spruce/vgeneric13",
"trees/oak/shoakgeneric2",
"trees/spruce/vgeneric14",
"trees/spruce/vgeneric10",
"trees/spruce/vgeneric19",
"clutter/workshop1",
"trees/spruce/vgeneric15",
"jigsaw/village-bits/bland-ne-1",
"trees/spruce/vgeneric16",
"jigsaw/village-bits/bland-ne-2",
"trees/spruce/vgeneric17",
"jigsaw/village-bits/bland-ne-3",
"trees/spruce/vgeneric18",
"clutter/tourmaclutt9",
"clutter/tourmaclutt8",
"clutter/tourmaclutt7",
"clutter/tourmaclutt6",
"clutter/tourmaclutt5",
"clutter/tourmaclutt4",
"clutter/tourmaclutt3",
"clutter/tourmaclutt2",
"clutter/tourmaclutt1",
"trees/oak/shoakgeneric7",
"trees/oak/shoakgeneric8",
"trees/oak/shoakgeneric9",
"trees/oak/shoakgeneric3",
"structures/shiprightsideupfulldegraded",
"trees/oak/shoakgeneric4",
"trees/oak/shoakgeneric5",
"trees/oak/shoakgeneric6",
"trees/mushroom/crimsonwood2",
"trees/mushroom/crimsonwood1",
"trees/mushroom/crimsonwood5",
"trees/mushroom/crimsonwood4",
"trees/mushroom/crimsonwood3",
"clutter/honeynest1",
"clutter/honeynest2",
"clutter/honeynest3",
"clutter/honeynest4",
"jigsaw/underwater_ruin/mossy_6",
"jigsaw/underwater_ruin/mossy_5",
"jigsaw/underwater_ruin/mossy_8",
"jigsaw/underwater_ruin/mossy_7",
"clutter/honeynest9",
"jigsaw/underwater_ruin/mossy_2",
"jigsaw/underwater_ruin/mossy_1",
"jigsaw/underwater_ruin/mossy_4",
"jigsaw/underwater_ruin/mossy_3",
"clutter/honeynest5",
"clutter/honeynest6",
"clutter/honeynest7",
"clutter/honeynest8",
"trees/jungle/denmyre15",
"trees/jungle/denmyre16",
"trees/sakura/vlarge1",
"trees/jungle/denmyre10",
"trees/sakura/vlarge2",
"trees/jungle/denmyre11",
"trees/jungle/denmyre12",
"trees/jungle/denmyre13",
"trees/jungle/denmyre14",
"clutter/stonedirtsetter7",
"clutter/stonedirtsetter5",
"clutter/stonedirtsetter6",
"clutter/stonedirtsetter3",
"clutter/stonedirtsetter4",
"clutter/stonedirtsetter1",
"clutter/stonedirtsetter2",
"structures/FT_1",
"structures/hut",
"structures/usdship2",
"structures/usdship1",
"trees/sakura/vlarge3",
"structures/rustic4",
"clutter/bonespire2",
"clutter/bonespire1",
"clutter/medtourmaclutt10",
"clutter/bonespire4",
"clutter/medtourmaclutt11",
"trees/oak/massivegeneric3",
"clutter/bonespire3",
"clutter/medtourmaclutt12",
"clutter/medtourmaclutt13",
"clutter/medtourmaclutt14",
"clutter/medtourmaclutt15",
"clutter/medtourmaclutt16",
"trees/mushroom/mushclut2",
"trees/mushroom/mushclut3",
"trees/mushroom/mushclut4",
"trees/mushroom/mushclut5",
"trees/mushroom/mushclut6",
"trees/mushroom/mushclut7",
"trees/mushroom/mushclut8",
"clutter/bomb1",
"trees/mushroom/mushclut9",
"jigsaw/pillager_outpost/watchtower_overgrown",
"trees/mushroom/mushclut1",
"clutter/medtourmaclutt17",
"trees/oak/troofed1",
"clutter/bonespire9",
"clutter/medtourmaclutt18",
"trees/oak/troofed2",
"clutter/medtourmaclutt19",
"clutter/bonespire6",
"trees/oak/massivegeneric1",
"trees/oak/troofed5",
"clutter/bonespire5",
"trees/oak/massivegeneric2",
"trees/oak/troofed6",
"clutter/bonespire8",
"trees/oak/troofed3",
"clutter/bonespire7",
"trees/oak/troofed4",
"clutter/medtourmaclutt20",
"trees/oak/troofed9",
"trees/birch/omni1",
"trees/oak/troofed7",
"trees/oak/troofed8",
"structures/monolith5",
"clutter/srock1",
"structures/monolith6",
"structures/monolith3",
"structures/monolith4",
"trees/spruce/severgreen1",
"trees/spruce/severgreen2",
"trees/birch/smolponderosa5",
"trees/birch/smolponderosa6",
"trees/birch/smolponderosa3",
"trees/birch/smolponderosa4",
"structures/monolith1",
"trees/birch/smolponderosa9",
"structures/monolith2",
"clutter/srock2",
"trees/birch/smolponderosa7",
"trees/birch/smolponderosa8",
"trees/oak/smfallen1",
"trees/birch/smolponderosa1",
"trees/birch/smolponderosa2",
"trees/spruce/vgeneric30",
"trees/spruce/vgeneric31",
"trees/sakura/smwilt1",
"trees/spruce/vgeneric32",
"jigsaw/fossil/spine_3_coal",
"trees/sakura/smwilt2",
"trees/spruce/twirl1",
"trees/spruce/vgeneric22",
"trees/birch/denmyre9",
"trees/spruce/twirl2",
"trees/spruce/vgeneric23",
"trees/birch/denmyre8",
"trees/spruce/twirl3",
"trees/spruce/vgeneric24",
"trees/birch/denmyre7",
"trees/spruce/twirl4",
"trees/spruce/vgeneric25",
"trees/birch/denmyre6",
"trees/birch/denmyre5",
"trees/birch/denmyre4",
"trees/spruce/vgeneric20",
"trees/birch/denmyre3",
"trees/spruce/vgeneric21",
"structures/tentacleslime6",
"trees/spruce/twirl9",
"structures/tentacleslime5",
"structures/tentacleslime4",
"structures/tentacleslime3",
"structures/shiprightsideupbackhalf",
"structures/tentacleslime2",
"trees/spruce/twirl5",
"trees/spruce/vgeneric26",
"structures/tentacleslime1",
"trees/spruce/twirl6",
"trees/spruce/vgeneric27",
"trees/spruce/twirl7",
"trees/spruce/vgeneric28",
"trees/spruce/twirl8",
"trees/spruce/vgeneric29",
"structures/tentacleslime7",
"jigsaw/fossil/skull_3",
"structures/shipupsidedownfull",
"jigsaw/fossil/skull_4",
"jigsaw/fossil/skull_1",
"jigsaw/fossil/skull_2",
"trees/birch/denmyre2",
"trees/birch/denmyre1",
"trees/darkoak/large-10",
"trees/mushroom/smolshroom5",
"trees/mushroom/smolshroom4",
"trees/mushroom/redlumotall11",
"trees/mushroom/redlumotall10",
"structures/tower-twin",
"trees/jungle/palm2",
"trees/jungle/palm3",
"trees/jungle/palm4",
"trees/mushroom/redgeneric11",
"trees/jungle/palm5",
"trees/mushroom/redgeneric10",
"trees/jungle/palm6",
"trees/mushroom/smolshroom1",
"trees/jungle/palm7",
"trees/jungle/palm8",
"trees/mushroom/smolshroom3",
"trees/jungle/palm9",
"trees/mushroom/smolshroom2",
"structures/presentblue19",
"trees/jungle/palm1",
"trees/jungle/bmbogeneric5",
"trees/jungle/bmbogeneric6",
"trees/jungle/bmbogeneric3",
"trees/jungle/bmbogeneric4",
"trees/jungle/bmbogeneric1",
"trees/jungle/bmbogeneric2",
"jigsaw/underwater_ruin/big_mossy_8",
"trees/spruce/twirl10",
"clutter/soulcamp1",
"trees/spruce/unfrostedlarge8",
"trees/spruce/unfrostedlarge9",
"jigsaw/underwater_ruin/big_mossy_2",
"trees/spruce/unfrostedlarge4",
"jigsaw/underwater_ruin/big_mossy_3",
"trees/spruce/unfrostedlarge5",
"trees/spruce/unfrostedlarge6",
"jigsaw/underwater_ruin/big_mossy_1",
"trees/spruce/unfrostedlarge7",
"trees/spruce/unfrostedlarge1",
"trees/spruce/unfrostedlarge2",
"trees/spruce/unfrostedlarge3",
"jigsaw/village-bits/logger-ne-5",
"jigsaw/village-bits/logger-ne-3",
"jigsaw/village-bits/logger-ne-4",
"jigsaw/end_city/fat_tower_base",
"trees/jungle/bmbogeneric9",
"trees/jungle/bmbogeneric7",
"trees/jungle/bmbogeneric8",
"jigsaw/village-bits/logger-ne-1",
"jigsaw/village-bits/logger-ne-2",
"trees/acacia/thin9",
"trees/bonsai/med-3",
"trees/acacia/thin8",
"trees/bonsai/med-2",
"trees/acacia/thin7",
"trees/bonsai/med-1",
"trees/acacia/thin6",
"trees/acacia/thin5",
"trees/acacia/thin4",
"trees/acacia/thin3",
"trees/acacia/thin2",
"trees/bonsai/med-4",
"trees/mixed/purpletourmalinelarge6",
"trees/mixed/purpletourmalinelarge5",
"trees/mixed/purpletourmalinelarge8",
"trees/mixed/purpletourmalinelarge7",
"trees/mixed/purpletourmalinelarge2",
"trees/mixed/purpletourmalinelarge1",
"trees/mixed/purpletourmalinelarge4",
"trees/mixed/purpletourmalinelarge3",
"trees/mixed/purpletourmalinelarge9",
"structures/presentsupermassivereda4",
"trees/spruce/generic3",
"trees/spruce/generic2",
"trees/spruce/generic1",
"clutter/stump7",
"trees/spruce/sup-pine-1",
"trees/spruce/sup-pine-2",
"clutter/stump5",
"clutter/stump6",
"clutter/stump3",
"trees/birch/medponderosa10",
"clutter/stump4",
"clutter/stump1",
"clutter/stump2",
"trees/birch/medponderosa14",
"trees/spruce/sup-pine-9",
"trees/birch/medponderosa13",
"trees/birch/medponderosa12",
"trees/spruce/sup-pine-7",
"trees/birch/medponderosa11",
"trees/spruce/sup-pine-8",
"trees/mixed/bleedingserralita10",
"trees/spruce/sup-pine-5",
"trees/spruce/sup-pine-6",
"trees/spruce/sup-pine-3",
"trees/birch/medponderosa15",
"trees/spruce/sup-pine-4",
"trees/spruce/lushgenericpine7",
"trees/spruce/lushgenericpine6",
"trees/spruce/lushgenericpine9",
"trees/spruce/lushgenericpine8",
"trees/bonsai/smbon1",
"trees/bonsai/smbon2",
"trees/bonsai/smbon3",
"clutter/genericpeak6",
"clutter/genericpeak5",
"clutter/genericpeak4",
"clutter/genericpeak3",
"clutter/genericpeak2",
"clutter/genericpeak1",
"trees/spruce/lushgenericpine3",
"trees/spruce/lushgenericpine2",
"trees/spruce/lushgenericpine5",
"trees/oak/sponderosa10",
"trees/spruce/lushgenericpine4",
"trees/spruce/lushgenericpine1",
"trees/oak/sponderosa15",
"structures/floatisle1",
"trees/oak/sponderosa11",
"trees/oak/sponderosa12",
"trees/oak/sponderosa13",
"trees/oak/sponderosa14",
"jigsaw/end_city/second_floor_1",
"jigsaw/end_city/second_floor_2",
"trees/oak/smol3",
"trees/spruce/genericdead1",
"trees/oak/smol4",
"trees/oak/smol5",
"trees/spruce/genericdead3",
"trees/oak/smol6",
"trees/spruce/genericdead2",
"trees/oak/smol1",
"trees/oak/smol2",
"trees/oak/smol7",
"trees/jungle/sgeneric1",
"trees/oak/smol8",
"trees/jungle/sgeneric2",
"trees/oak/smol9",
"trees/jungle/sgeneric3",
"trees/jungle/sgeneric4",
"jigsaw/end_city/bridge_gentle_stairs",
"trees/mixed/purpletourmalinelarge10",
"trees/darkoak/denmyre5",
"trees/darkoak/denmyre4",
"trees/darkoak/denmyre3",
"trees/darkoak/denmyre2",
"trees/darkoak/denmyre1",
"trees/spruce/pine7",
"trees/spruce/pine8",
"trees/spruce/pine9",
"trees/spruce/pine3",
"trees/spruce/pine4",
"trees/spruce/pine5",
"trees/spruce/pine6",
"jigsaw/village-bits/lanterns-x-1",
"jigsaw/village-bits/lanterns-x-2",
"trees/spruce/pine1",
"trees/spruce/pine2",
"jigsaw/village-bits/lanterns-x-5",
"trees/darkoak/denmyre9",
"trees/darkoak/denmyre8",
"jigsaw/village-bits/lanterns-x-3",
"trees/darkoak/denmyre7",
"jigsaw/village-bits/lanterns-x-4",
"trees/darkoak/denmyre6",
"jigsaw/end_city/tower_base",
"structures/presentsupermassivegreena10",
"clutter/coralpink1",
"jigsaw/murky_stronghold/f-x-5",
"trees/mixed/purpletourmalinemed10",
"clutter/coralpink2",
"jigsaw/murky_stronghold/f-x-4",
"trees/oak/antioch10",
"clutter/coralpink3",
"trees/oak/antioch11",
"clutter/coralpink4",
"jigsaw/murky_stronghold/f-x-6",
"trees/oak/antioch12",
"jigsaw/murky_stronghold/f-x-1",
"trees/oak/antioch13",
"jigsaw/murky_stronghold/f-x-3",
"jigsaw/murky_stronghold/f-x-2",
"clutter/icespec2",
"clutter/icespec3",
"clutter/icespec1",
"clutter/icespec4",
"clutter/melons6",
"clutter/icespec5",
"clutter/melons4",
"trees/acacia/thin10",
"clutter/melons5",
"clutter/melons2",
"trees/acacia/thin12",
"clutter/melons3",
"trees/acacia/thin11",
"trees/acacia/thin14",
"clutter/melons1",
"trees/acacia/thin13",
"trees/acacia/thin16",
"trees/acacia/thin15",
"trees/darkoak/willowbutbigger-1",
"trees/darkoak/willowbutbigger-2",
"jigsaw/end_city/tower_floor",
"trees/bonsai/smbase1",
"trees/mixed/serralutageneric8",
"trees/mixed/serralutageneric9",
"trees/mixed/serralutageneric1",
"trees/mixed/serralutageneric2",
"trees/mixed/serralutageneric3",
"trees/mixed/serralutageneric4",
"trees/mixed/serralutageneric5",
"trees/mixed/serralutageneric6",
"trees/mixed/serralutageneric7",
"clutter/desertpost3",
"clutter/tourmaclutt21",
"clutter/tourmaclutt20",
"clutter/tourmaclutt23",
"clutter/tourmaclutt22",
"clutter/tourmaclutt25",
"trees/oak/truegeneric22",
"clutter/tourmaclutt24",
"trees/oak/truegeneric21",
"trees/oak/truegeneric24",
"trees/oak/truegeneric23",
"trees/spruce/pine12",
"trees/oak/truegeneric20",
"clutter/desertpost1",
"trees/spruce/pine11",
"clutter/desertpost2",
"trees/spruce/pine10",
"trees/oak/troofedroot10",
"trees/oak/truegeneric19",
"trees/oak/truegeneric18",
"clutter/tourmaclutt10",
"trees/oak/truegeneric15",
"trees/spruce/unfrostedlarge22",
"trees/oak/truegeneric14",
"trees/spruce/unfrostedlarge23",
"clutter/tourmaclutt12",
"trees/oak/truegeneric17",
"trees/spruce/unfrostedlarge24",
"clutter/tourmaclutt11",
"trees/oak/truegeneric16",
"clutter/tourmaclutt14",
"trees/oak/truegeneric11",
"clutter/tourmaclutt13",
"trees/oak/truegeneric10",
"clutter/tourmaclutt16",
"trees/oak/truegeneric13",
"trees/spruce/unfrostedlarge20",
"clutter/tourmaclutt15",
"trees/oak/truegeneric12",
"trees/spruce/unfrostedlarge21",
"clutter/doakspec1",
"clutter/doakspec3",
"clutter/bincluster1",
"clutter/doakspec2",
"trees/oak/sloak1",
"clutter/tourmaclutt18",
"clutter/tourmaclutt17",
"clutter/tourmaclutt19",
"structures/shipgenericplain",
"trees/spruce/denmyre5",
"trees/spruce/denmyre6",
"trees/spruce/denmyre7",
"trees/spruce/denmyre8",
"trees/spruce/denmyre1",
"trees/spruce/denmyre2",
"trees/spruce/denmyre3",
"trees/spruce/denmyre4",
"clutter/spikestone8",
"trees/bonsai/medtilt4",
"clutter/spikestone7",
"trees/bonsai/medtilt5",
"clutter/spikestone6",
"trees/bonsai/medtilt2",
"clutter/spikestone5",
"trees/bonsai/medtilt3",
"trees/bonsai/medtilt1",
"clutter/swordnpstr2",
"clutter/swordnpstr1",
"clutter/rdesertpost3",
"clutter/rdesertpost1",
"clutter/rdesertpost2",
"trees/spruce/denmyre9",
"jigsaw/underwater_ruin/big_warm_4",
"jigsaw/underwater_ruin/big_warm_5",
"jigsaw/murky_stronghold/c-ns-2",
"jigsaw/underwater_ruin/big_warm_6",
"jigsaw/murky_stronghold/c-ns-3",
"jigsaw/underwater_ruin/big_warm_7",
"jigsaw/murky_stronghold/c-ns-4",
"jigsaw/murky_stronghold/c-ns-1",
"trees/spruce/sfrostgeneric1",
"trees/spruce/sfrostgeneric2",
"jigsaw/village-bits/hay-x-4",
"trees/oak/mponderosa20",
"jigsaw/village-bits/hay-x-5",
"jigsaw/village-bits/hay-x-2",
"jigsaw/village-bits/hay-x-3",
"jigsaw/village-bits/hay-x-1",
"clutter/concretelith2",
"clutter/concretelith3",
"clutter/concretelith1",
"trees/oak/mponderosa15",
"trees/oak/mponderosa16",
"trees/oak/mponderosa13",
"trees/oak/mponderosa14",
"clutter/concretelith6",
"trees/oak/mponderosa19",
"clutter/concretelith7",
"clutter/concretelith4",
"trees/oak/mponderosa17",
"clutter/concretelith5",
"trees/oak/mponderosa18",
"trees/spruce/sprucetree-15",
"clutter/statue-villager-ocean",
"trees/spruce/sprucetree-14",
"trees/spruce/sprucetree-13",
"clutter/honeynest10",
"trees/oak/mponderosa11",
"trees/spruce/sprucetree-12",
"trees/oak/mponderosa12",
"trees/spruce/sprucetree-11",
"trees/spruce/sprucetree-10",
"trees/oak/mponderosa10",
"structures/ruin1",
"structures/ruin2",
"structures/ruin3",
"structures/ruin4",
"trees/spruce/sfrostgeneric7",
"trees/spruce/sfrostgeneric8",
"trees/spruce/sfrostgeneric9",
"clutter/spikestone4",
"trees/spruce/sfrostgeneric3",
"clutter/spikestone3",
"trees/spruce/sfrostgeneric4",
"clutter/spikestone2",
"trees/spruce/sfrostgeneric5",
"clutter/spikestone1",
"trees/spruce/sfrostgeneric6",
"trees/spruce/smol2",
"trees/spruce/smol3",
"trees/spruce/smol4",
"trees/spruce/smol5",
"trees/spruce/smol6",
"trees/spruce/smol7",
"trees/spruce/smol8",
"trees/spruce/smol9",
"trees/spruce/smol13",
"trees/spruce/smol10",
"trees/spruce/smol12",
"jigsaw/end_city/fat_tower_middle",
"trees/spruce/smol1",
"trees/spruce/smol11",
"trees/mushroom/froShroom2",
"trees/mushroom/froShroom3",
"trees/mushroom/froShroom4",
"trees/mushroom/froShroom5",
"structures/tentacleoak8",
"trees/mushroom/froShroom1",
"structures/tentacleoak6",
"structures/tentacleoak7",
"structures/tentacleoak4",
"structures/tentacleoak5",
"jigsaw/village-bits/bland-e-1",
"structures/tentacleoak2",
"structures/tentacleoak3",
"structures/tentacleoak1",
"jigsaw/end_city/bridge_steep_stairs",
"clutter/coralred1",
"trees/mushroom/redlumotall9",
"trees/mushroom/redlumotall8",
"trees/darkoak/generic11",
"trees/darkoak/generic10",
"trees/mushroom/redlumotall5",
"trees/mixed/swampcorrupt10",
"trees/mushroom/redlumotall4",
"jigsaw/fossil/skull_4_coal",
"trees/mushroom/redlumotall7",
"trees/mushroom/redlumotall6",
"clutter/icecluster11",
"jigsaw/village-bits/bland-e-5",
"trees/mushroom/redlumotall1",
"clutter/icecluster10",
"jigsaw/village-bits/bland-e-4",
"jigsaw/village-bits/bland-e-3",
"trees/mushroom/redlumotall3",
"jigsaw/village-bits/bland-e-2",
"trees/mushroom/redlumotall2",
"trees/acacia/savannas12",
"trees/acacia/savannas11",
"trees/acacia/savannas10",
"jigsaw/village-bits/logger-ns-5",
"trees/mixed/serralutageneric10",
"trees/oak/smtoak1",
"clutter/boulder1",
"jigsaw/village-bits/logger-ns-3",
"clutter/boulder2",
"jigsaw/village-bits/logger-ns-4",
"jigsaw/village-bits/logger-ns-1",
"jigsaw/village-bits/logger-ns-2",
"clutter/boulder5",
"clutter/boulder6",
"clutter/boulder3",
"trees/jungle/smgeneric1",
"clutter/boulder4",
"clutter/boulder9",
"clutter/boulder7",
"clutter/boulder8",
"clutter/corazoncristal",
"trees/birch/denmyre10",
"trees/birch/denmyre11",
"trees/birch/denmyre14",
"trees/birch/denmyre15",
"trees/birch/denmyre12",
"trees/birch/denmyre13",
"trees/birch/denmyre16",
"clutter/rsphinx1",
"clutter/coralyellow3",
"clutter/rbrksphinx1",
"trees/mixed/honey17",
"trees/mixed/honey16",
"trees/mixed/honey15",
"structures/presentreda14",
"trees/mixed/honey14",
"trees/darkoak/willowgeneric2",
"trees/darkoak/willowgeneric1",
"trees/mixed/honey19",
"trees/mixed/honey18",
"trees/mixed/swampcorrupt6",
"trees/oak/troofedroot4",
"trees/mixed/swampcorrupt5",
"trees/oak/troofedroot3",
"trees/mixed/swampcorrupt4",
"trees/oak/troofedroot2",
"trees/mixed/swampcorrupt3",
"trees/oak/troofedroot1",
"trees/mixed/honey13",
"trees/oak/troofedroot8",
"trees/mixed/honey12",
"trees/mixed/swampcorrupt9",
"trees/oak/troofedroot7",
"trees/mixed/honey11",
"trees/mixed/swampcorrupt8",
"trees/oak/troofedroot6",
"trees/mixed/honey10",
"trees/mixed/swampcorrupt7",
"trees/oak/troofedroot5",
"trees/mixed/swampcorrupt2",
"trees/mixed/swampcorrupt1",
"trees/spruce/unfrostedlarge11",
"trees/spruce/unfrostedlarge12",
"trees/spruce/unfrostedlarge13",
"trees/spruce/unfrostedlarge14",
"clutter/sbush1",
"clutter/sbush2",
"clutter/sbush3",
"trees/spruce/unfrostedlarge10",
"trees/spruce/unfrostedlarge19",
"trees/spruce/unfrostedlarge15",
"trees/spruce/unfrostedlarge16",
"trees/spruce/unfrostedlarge17",
"trees/spruce/unfrostedlarge18",
"structures/oruins1",
"trees/mixed/honey20",
"structures/oruins2",
"trees/sakura/mlarge11",
"trees/sakura/mlarge10",
"structures/oruins3",
"clutter/icespiresmol2",
"trees/acacia/savannaS3",
"clutter/icespiresmol1",
"trees/acacia/savannaS2",
"trees/acacia/savannaS1",
"clutter/icespiresmol3",
"jigsaw/village-bits/lanterns-ns-1",
"structures/presentmediumblue17",
"trees/oak/arid4",
"trees/oak/dead1",
"structures/tentacledarkwood1",
"trees/oak/arid5",
"structures/tentacledarkwood2",
"trees/oak/arid6",
"trees/oak/dead3",
"structures/tentacledarkwood3",
"trees/oak/arid7",
"trees/oak/dead2",
"jigsaw/village-bits/lanterns-ns-2",
"jigsaw/end_city/base_roof",
"jigsaw/village-bits/lanterns-ns-3",
"jigsaw/village-bits/lanterns-ns-4",
"jigsaw/village-bits/lanterns-ns-5",
"trees/acacia/savannaS7",
"trees/acacia/savannaS6",
"trees/acacia/savannaS5",
"trees/acacia/savannaS4",
"trees/oak/arid1",
"trees/oak/arid2",
"trees/acacia/savannaS8",
"trees/oak/arid3",
"trees/acacia/denmyre10",
"trees/acacia/denmyre11",
"trees/acacia/denmyre14",
"trees/mushroom/froShroom6",
"trees/acacia/denmyre15",
"trees/mushroom/froShroom7",
"trees/acacia/denmyre12",
"trees/mushroom/froShroom8",
"trees/acacia/denmyre13",
"trees/mushroom/froShroom9",
"trees/acacia/denmyre16",
"trees/oak/troofedroot9",
"trees/oak/dead5",
"trees/oak/dead4",
"jigsaw/end_city/bridge_piece",
"trees/oak/dead6",
"jigsaw/murky_stronghold/fc-sw-1",
"structures/ship2",
"jigsaw/murky_stronghold/fc-sw-2",
"structures/ship1",
"jigsaw/murky_stronghold/fc-sw-3",
"jigsaw/murky_stronghold/fc-sw-4",
"jigsaw/end_city/third_roof",
"clutter/birchclutt1",
"clutter/magmaspire3",
"clutter/magmaspire2",
"clutter/magmaspire1",
"clutter/bone1",
"clutter/bone6",
"clutter/bone7",
"clutter/bone4",
"clutter/bone5",
"jigsaw/pyramid/py",
"clutter/bone2",
"clutter/bone3",
"trees/acacia/savannaF9",
"trees/acacia/savannaF8",
"trees/acacia/savannaF7",
"jigsaw/underwater_ruin/big_cracked_2",
"jigsaw/underwater_ruin/big_cracked_3",
"jigsaw/underwater_ruin/big_cracked_8",
"structures/presentbluea20",
"trees/oak/toak10",
"trees/oak/toak11",
"jigsaw/underwater_ruin/big_cracked_1",
"trees/oak/swoak5",
"clutter/singleicespike5",
"trees/sproak/generic1",
"clutter/singleicespike2",
"trees/sproak/generic3",
"clutter/singleicespike1",
"trees/sproak/generic2",
"clutter/singleicespike4",
"trees/sproak/generic5",
"clutter/singleicespike3",
"trees/sproak/generic4",
"trees/mixed/tredwoodsmol1",
"trees/mixed/tredwoodsmol2",
"trees/mixed/tredwoodsmol3",
"trees/mixed/tredwoodsmol4",
"structures/shipupsidedownfronthalfdegraded",
"trees/mixed/tredwoodsmol5",
"jigsaw/murky_stronghold/fc-x-7",
"jigsaw/murky_stronghold/fc-x-8",
"jigsaw/murky_stronghold/fc-x-5",
"jigsaw/murky_stronghold/fc-x-6",
"jigsaw/murky_stronghold/fc-x-3",
"jigsaw/murky_stronghold/fc-x-4",
"jigsaw/murky_stronghold/fc-x-1",
"jigsaw/murky_stronghold/fc-x-2",
"trees/sproak/generic7",
"trees/sproak/generic6",
"trees/sproak/generic9",
"trees/sproak/generic8",
"trees/oak/swoak1",
"trees/oak/swoak2",
"trees/oak/swoak3",
"trees/oak/swoak4",
"trees/oak/thoakgeneric1",
"trees/sakura/ogabsurd1",
"trees/sakura/ogabsurd2",
"trees/oak/thoakgeneric9",
"trees/darkoak/large-3",
"trees/oak/thoakgeneric8",
"trees/oak/thoakgeneric7",
"trees/oak/thoakgeneric6",
"trees/oak/thoakgeneric5",
"trees/oak/thoakgeneric4",
"clutter/smoleicespike2",
"trees/oak/thoakgeneric3",
"clutter/smoleicespike1",
"trees/oak/thoakgeneric2",
"clutter/smoleicespike4",
"clutter/smoleicespike3",
"structures/shipsidewaysfull",
"clutter/smoleicespike6",
"clutter/smoleicespike5",
"clutter/smoleicespike8",
"clutter/smoleicespike7",
"clutter/smoleicespike9",
"jigsaw/village-bits/logger-x-3",
"jigsaw/village-bits/logger-x-2",
"jigsaw/village-bits/logger-x-1",
"jigsaw/village-bits/logger-x-5",
"jigsaw/village-bits/logger-x-4",
"jigsaw/murky_stronghold/fc-nsw-4",
"jigsaw/murky_stronghold/fc-nsw-3",
"jigsaw/murky_stronghold/fc-nsw-2",
"jigsaw/murky_stronghold/fc-nsw-1",
"trees/sproak/msapling10",
"trees/oak/lponderosa13",
"trees/sakura/ogabsurdfallen1",
"trees/oak/lponderosa12",
"trees/oak/lponderosa15",
"trees/oak/lponderosa14",
"trees/oak/toak4",
"trees/oak/toak3",
"trees/oak/toak2",
"trees/oak/toak1",
"trees/oak/hoakgeneric5",
"trees/oak/hoakgeneric4",
"trees/oak/hoakgeneric3",
"trees/oak/hoakgeneric2",
"trees/oak/hoakgeneric1",
"trees/jungle/denmyre5",
"trees/jungle/denmyre4",
"trees/jungle/denmyre7",
"trees/jungle/denmyre6",
"jigsaw/murky_stronghold/c-n-4",
"trees/jungle/denmyre9",
"jigsaw/murky_stronghold/c-n-3",
"trees/jungle/denmyre8",
"jigsaw/fossil/skull_2_coal",
"jigsaw/murky_stronghold/c-n-2",
"jigsaw/murky_stronghold/c-n-1",
"trees/jungle/denmyre1",
"trees/spruce/levergreen2",
"trees/spruce/levergreen3",
"trees/jungle/denmyre3",
"trees/jungle/denmyre2",
"trees/spruce/levergreen1",
"trees/spruce/levergreen6",
"trees/spruce/levergreen4",
"trees/spruce/levergreen5",
"trees/oak/hoakgeneric9",
"trees/oak/hoakgeneric8",
"trees/oak/hoakgeneric7",
"trees/oak/hoakgeneric6",
"clutter/spruceclutt4",
"clutter/spruceclutt5",
"clutter/spruceclutt6",
"clutter/rock2",
"clutter/rock1",
"clutter/spruceclutt1",
"clutter/rock4",
"clutter/spruceclutt2",
"clutter/rock3",
"clutter/spruceclutt3",
"clutter/hive1",
"trees/mixed/dotree10",
"clutter/hive2",
"structures/gall3",
"structures/gall1",
"jigsaw/end_city/tower_top",
"structures/gall2",
"trees/oak/toak8",
"trees/oak/toak7",
"trees/sproak/msapling1",
"trees/oak/toak6",
"trees/sproak/msapling2",
"trees/oak/toak5",
"trees/sproak/msapling3",
"jigsaw/pyramid/pyramid-extreme",
"trees/oak/toak9",
"trees/sproak/msapling8",
"trees/sproak/msapling9",
"jigsaw/mansion/grid",
"trees/sproak/msapling4",
"trees/sproak/msapling5",
"trees/sproak/msapling6",
"trees/sproak/msapling7",
"clutter/sshrubb1",
"clutter/sshrubb2",
"clutter/sshrubb3",
"jigsaw/village-bits/hay-ne-5",
"jigsaw/village-bits/hay-ne-4",
"jigsaw/village-bits/hay-ne-3",
"jigsaw/village-bits/hay-ne-2",
"jigsaw/village-bits/hay-ne-1",
"trees/birch/largeponderosa9",
"trees/birch/largeponderosa8",
"trees/birch/largeponderosa7",
"trees/birch/largeponderosa6",
"trees/birch/largeponderosa5",
"jigsaw/end_city/ship",
"trees/birch/largeponderosa4",
"trees/birch/largeponderosa3",
"trees/birch/largeponderosa2",
"trees/birch/largeponderosa1",
"clutter/jungleclutt9",
"trees/acacia/savannaF2",
"trees/acacia/savannaF1",
"structures/shipsidewaysbackhalfdegraded",
"trees/acacia/savannaF6",
"trees/acacia/savannaF5",
"trees/acacia/savannaF4",
"trees/acacia/savannaF3",
"structures/landspike2",
"structures/landspike3",
"structures/landspike1",
"jigsaw/fossil/spine_4_coal",
"structures/giantportal2",
"structures/giantportal3",
"jigsaw/underwater_ruin/cracked_1",
"jigsaw/underwater_ruin/cracked_2",
"jigsaw/underwater_ruin/cracked_5",
"jigsaw/underwater_ruin/cracked_6",
"structures/giantportal1",
"jigsaw/underwater_ruin/cracked_3",
"jigsaw/underwater_ruin/cracked_4",
"jigsaw/underwater_ruin/cracked_7",
"jigsaw/underwater_ruin/cracked_8",
"clutter/birchclutt5",
"clutter/birchclutt4",
"clutter/birchclutt3",
"clutter/birchclutt2",
"clutter/nportstone1",
"trees/acacia/savannaD3",
"trees/acacia/savannaD2",
"trees/oak/lponderosa11",
"trees/acacia/savannaD1",
"trees/oak/lponderosa10",
"trees/bonsai/frolow8",
"trees/darkoak/smdeadwillow1",
"structures/woodhand3",
"trees/bonsai/frolow9",
"trees/bonsai/frolow6",
"trees/bonsai/frolow7",
"trees/darkoak/smdeadwillow2",
"trees/oak/antioch1",
"trees/bonsai/frolow4",
"trees/bonsai/frolow5",
"trees/bonsai/frolow2",
"trees/bonsai/frolow3",
"trees/jungle/spire7",
"clutter/junglestone2",
"trees/bonsai/frolow1",
"structures/woodhand2",
"structures/woodhand1",
"trees/jungle/spire1",
"trees/jungle/spire2",
"trees/jungle/spire5",
"trees/jungle/spire6",
"trees/jungle/spire3",
"trees/jungle/spire4",
"trees/oak/antioch4",
"trees/oak/antioch5",
"trees/oak/antioch2",
"trees/oak/antioch3",
"trees/oak/antioch8",
"trees/oak/antioch9",
"trees/oak/antioch6",
"trees/oak/antioch7",
"structures/crystal9",
"structures/crystal8",
"structures/crystal7",
"trees/mixed/sredwood4",
"trees/mixed/sredwood3",
"trees/mixed/sredwood2",
"trees/mixed/sredwood1",
"trees/mushroom/warped5",
"trees/mushroom/warped4",
"trees/mushroom/warped6",
"trees/mushroom/warped1",
"trees/mushroom/warped3",
"trees/mushroom/warped2",
"clutter/junglestone1",
"structures/crystal2",
"structures/crystal1",
"structures/crystal6",
"structures/crystal5",
"structures/crystal4",
"structures/crystal3",
"clutter/jungleclutt8",
"clutter/jungleclutt7",
"clutter/jungleclutt6",
"clutter/jungleclutt5",
"clutter/jungleclutt4",
"clutter/jungleclutt3",
"clutter/jungleclutt2",
"clutter/jungleclutt1",
"jigsaw/pillager_outpost/watchtower",
"structures/ruins-greek-temple",
"trees/spruce/unfrostedsmol1",
"trees/spruce/unfrostedsmol4",
"trees/spruce/unfrostedsmol5",
"trees/spruce/unfrostedsmol2",
"trees/spruce/unfrostedsmol3",
"trees/spruce/unfrostedsmol8",
"trees/spruce/unfrostedsmol9",
"trees/spruce/unfrostedsmol6",
"trees/spruce/unfrostedsmol7",
"structures/presentsupermassiveyellow1",
"trees/jungle/palm11",
"trees/mushroom/greygeneric3",
"trees/jungle/palm12",
"trees/mushroom/greygeneric4",
"trees/mushroom/greygeneric5",
"trees/jungle/palm10",
"trees/mushroom/greygeneric6",
"trees/mushroom/greygeneric7",
"trees/mushroom/greygeneric8",
"trees/jungle/palm13",
"trees/mushroom/greygeneric1",
"trees/mushroom/greygeneric2",
"jigsaw/pillager_outpost/base_plate",
"trees/sakura/smtaint1",
"trees/mixed/purpletourmalinemed1",
"trees/sakura/smtaint2",
"trees/mixed/purpletourmalinemed9",
"trees/mixed/purpletourmalinemed8",
"trees/mixed/purpletourmalinemed7",
"trees/mixed/purpletourmalinemed6",
"trees/mixed/purpletourmalinemed5",
"clutter/oaklog3",
"trees/mixed/purpletourmalinemed4",
"clutter/oaklog2",
"trees/mixed/purpletourmalinemed3",
"clutter/oaklog1",
"trees/mixed/purpletourmalinemed2",
"structures/tentaclefire8",
"structures/tentaclefire7",
"trees/mixed/elderredwood10",
"clutter/icecluster1",
"clutter/icecluster2",
"clutter/icecluster3",
"clutter/icecluster4",
"trees/mushroom/lumo4",
"trees/oak/smoak17",
"trees/mushroom/lumo5",
"trees/oak/smoak16",
"trees/mushroom/lumo6",
"trees/oak/smoak19",
"trees/mushroom/lumo7",
"trees/oak/smoak18",
"trees/oak/smoak13",
"trees/mushroom/lumo1",
"trees/oak/smoak12",
"trees/mushroom/lumo2",
"trees/oak/smoak15",
"trees/mushroom/lumo3",
"trees/oak/smoak14",
"clutter/oakclutt4",
"trees/birch/smolponderosa10",
"clutter/oakclutt3",
"trees/birch/smolponderosa11",
"clutter/oakclutt2",
"trees/oak/smoak11",
"clutter/oakclutt1",
"trees/oak/smoak10",
"clutter/cobblespike",
"trees/birch/smolponderosa14",
"trees/mushroom/lumo8",
"trees/birch/smolponderosa15",
"trees/mushroom/lumo9",
"trees/birch/smolponderosa12",
"clutter/oakclutt5",
"trees/birch/smolponderosa13",
"clutter/icecluster5",
"clutter/icecluster6",
"clutter/icecluster7",
"clutter/icecluster8",
"clutter/icecluster9",
"clutter/oakdenclutt2",
"clutter/oakdenclutt3",
"clutter/oakdenclutt4",
"clutter/oakdenclutt5",
"clutter/oakdenclutt6",
"clutter/oakdenclutt7",
"clutter/oakdenclutt8",
"clutter/oakdenclutt9",
"trees/mixed/medbleedingserralita10",
"trees/oak/smoak20",
"trees/oak/smoak21",
"jigsaw/pyramid/pyramid",
"clutter/oakdenclutt1",
"structures/shipsidewaysbackhalf",
"trees/spruce/omni1",
"structures/presentsupermassiveblue11",
"trees/oak/foakm4",
"trees/oak/foakm3",
"trees/oak/foakm2",
"trees/mixed/smoakog160",
"trees/oak/foakm1",
"jigsaw/village-bits/lanterns-nes-1",
"trees/jungle/vgeneric6",
"jigsaw/village-bits/lanterns-nes-2",
"trees/jungle/vgeneric5",
"trees/jungle/vgeneric8",
"trees/jungle/vgeneric7",
"jigsaw/village-bits/lanterns-nes-5",
"trees/jungle/vgeneric2",
"trees/jungle/vgeneric1",
"jigsaw/village-bits/lanterns-nes-3",
"trees/jungle/vgeneric4",
"jigsaw/village-bits/lanterns-nes-4",
"trees/jungle/vgeneric3",
"jigsaw/village-bits/logger-e-2",
"structures/presentsupermassivered3",
"jigsaw/village-bits/logger-e-1",
"trees/mixed/redrecluse9",
"jigsaw/village-bits/logger-e-5",
"trees/mixed/redrecluse8",
"jigsaw/village-bits/logger-e-4",
"jigsaw/village-bits/logger-e-3",
"trees/jungle/vgeneric9",
"structures/shipupsidedownbackhalfdegraded",
"trees/mixed/redrecluse1",
"trees/mixed/redrecluse3",
"trees/mixed/redrecluse2",
"clutter/jungleclutt10",
"jigsaw/pillager_outpost/feature_plate",
"trees/mixed/redrecluse5",
"clutter/jungleclutt11",
"trees/mixed/redrecluse4",
"clutter/jungleclutt12",
"trees/mixed/redrecluse7",
"clutter/jungleclutt13",
"trees/mixed/redrecluse6",
"jigsaw/end_city/third_floor_2",
"jigsaw/end_city/third_floor_1",
"structures/brokmill1",
"trees/mixed/smoakog1",
"clutter/twoicespike2",
"clutter/twoicespike1",
"clutter/twoicespike4",
"clutter/twoicespike3",
"structures/amethyst2",
"structures/amethyst3",
"structures/amethyst1",
"structures/amethyst6",
"structures/amethyst4",
"structures/amethyst5",
"jigsaw/murky_stronghold/f-ns-3",
"jigsaw/murky_stronghold/f-ns-4",
"jigsaw/murky_stronghold/f-ns-1",
"jigsaw/murky_stronghold/f-ns-2",
"structures/mlandstone5",
"structures/mlandstone4",
"structures/mlandstone1",
"structures/mlandstone3",
"structures/mlandstone2",
"trees/spruce/lfrostgeneric10",
"trees/spruce/lfrostgeneric11",
"trees/spruce/lfrostgeneric12",
"trees/spruce/lfrostgeneric13",
"trees/spruce/lfrostgeneric14",
"trees/spruce/lfrostgeneric15",
"trees/spruce/aridpine5",
"trees/spruce/lfrostgeneric16",
"trees/spruce/aridpine4",
"trees/spruce/lfrostgeneric17",
"trees/spruce/aridpine3",
"trees/spruce/lfrostgeneric18",
"trees/spruce/aridpine2",
"trees/spruce/lfrostgeneric19",
"trees/spruce/aridpine1",
"jigsaw/mansion/mansion_roof",
"structures/snowulder",
"trees/spruce/lfrostgeneric20",
"trees/spruce/lfrostgeneric21",
"trees/spruce/lfrostgeneric22",
"trees/spruce/lfrostgeneric23",
"trees/spruce/lfrostgeneric24",
"trees/spruce/lfrostgeneric25",
"trees/spruce/lfrostgeneric26",
"trees/mixed/redrecluse10",
"clutter/oakdenclutt10",
"clutter/statue-villager-hell",
"jigsaw/village-bits/hay-ns-5",
"jigsaw/village-bits/hay-ns-4",
"jigsaw/village-bits/hay-ns-3",
"jigsaw/village-bits/hay-ns-2",
"jigsaw/village-bits/hay-ns-1",
"clutter/stoneboulder8",
"clutter/stoneboulder9",
"clutter/stoneboulder6",
"clutter/stoneboulder7",
"clutter/stoneboulder1",
"clutter/stoneboulder4",
"clutter/stoneboulder5",
"clutter/stoneboulder2",
"clutter/stoneboulder3",
"trees/oak/croak19",
"trees/oak/croak6",
"trees/oak/croak7",
"trees/oak/croak17",
"trees/oak/croak8",
"trees/oak/croak18",
"trees/oak/croak9",
"trees/oak/croak2",
"trees/oak/croak3",
"trees/oak/croak4",
"trees/oak/croak5",
"trees/oak/denmyre12",
"trees/oak/denmyre11",
"trees/oak/denmyre14",
"trees/oak/croak1",
"trees/oak/denmyre13",
"clutter/coralby3",
"clutter/coralby2",
"trees/oak/denmyre10",
"clutter/coralby4",
"jigsaw/end_city/second_roof",
"trees/mushroom/blackgeneric8",
"trees/mushroom/blackgeneric7",
"trees/mushroom/blackgeneric6",
"trees/mushroom/blackgeneric5",
"trees/mushroom/blackgeneric9",
"clutter/coralby1",
"trees/oak/denmyre16",
"trees/oak/denmyre15",
"trees/spruce/lfrostgeneric8",
"trees/spruce/lfrostgeneric9",
"trees/spruce/lfrostgeneric4",
"trees/spruce/lfrostgeneric5",
"trees/spruce/lfrostgeneric6",
"trees/birch/smallgeneric9",
"trees/spruce/lfrostgeneric7",
"trees/mixed/elderredwood7",
"trees/mixed/elderredwood6",
"trees/spruce/lfrostgeneric1",
"structures/shipsidewaysfronthalfdegraded",
"trees/mixed/elderredwood9",
"trees/spruce/lfrostgeneric2",
"trees/mixed/elderredwood8",
"trees/spruce/lfrostgeneric3",
"trees/mixed/elderredwood3",
"trees/mixed/elderredwood2",
"trees/mixed/elderredwood5",
"trees/mixed/elderredwood4",
"trees/mixed/elderredwood1",
"trees/birch/smallgeneric8",
"trees/birch/smallgeneric7",
"trees/birch/smallgeneric6",
"trees/birch/smallgeneric5",
"trees/birch/smallgeneric4",
"trees/birch/smallgeneric3",
"trees/birch/smallgeneric2",
"trees/birch/smallgeneric1",
"trees/mushroom/browngeneric1",
"trees/birch/medponderosa9",
"trees/mushroom/blackgeneric4",
"trees/oak/dadwood5",
"trees/birch/medponderosa8",
"trees/mushroom/blackgeneric3",
"trees/mushroom/browngeneric2",
"trees/oak/dadwood4",
"trees/mushroom/blackgeneric2",
"trees/mushroom/blackgeneric1",
"trees/oak/dadwood6",
"trees/jungle/lgeneric2",
"trees/jungle/lgeneric1",
"trees/jungle/lgeneric4",
"trees/jungle/lgeneric3",
"trees/jungle/lgeneric6",
"trees/jungle/lgeneric5",
"trees/jungle/lgeneric8",
"trees/jungle/lgeneric7",
"trees/jungle/lgeneric9",
"trees/birch/medponderosa5",
"trees/oak/dadwood1",
"trees/birch/medponderosa4",
"trees/birch/medponderosa7",
"trees/oak/dadwood3",
"trees/birch/medponderosa6",
"trees/oak/dadwood2",
"trees/birch/medponderosa1",
"trees/birch/medponderosa3",
"trees/birch/medponderosa2",
"trees/mushroom/purplegeneric1",
"trees/mixed/infestedpalm4",
"trees/mushroom/purplegeneric5",
"trees/mixed/infestedpalm5",
"trees/mushroom/purplegeneric4",
"trees/mushroom/purplegeneric3",
"trees/mushroom/purplegeneric2",
"trees/acacia/denmyre3",
"trees/mushroom/purplegeneric9",
"trees/acacia/denmyre4",
"trees/mushroom/purplegeneric8",
"trees/acacia/denmyre5",
"trees/mushroom/purplegeneric7",
"trees/acacia/denmyre6",
"trees/birch/largegeneric9",
"trees/mushroom/purplegeneric6",
"trees/acacia/denmyre7",
"trees/birch/largegeneric8",
"trees/acacia/denmyre8",
"trees/birch/largegeneric7",
"trees/acacia/denmyre9",
"trees/birch/largegeneric6",
"trees/birch/largegeneric5",
"structures/presentsupermassiveorangea8",
"jigsaw/fossil/spine_1",
"jigsaw/murky_stronghold/c-nsw-1",
"jigsaw/fossil/spine_2",
"jigsaw/murky_stronghold/c-nsw-2",
"structures/shiprightsideupfull",
"jigsaw/fossil/spine_3",
"jigsaw/murky_stronghold/c-nsw-3",
"jigsaw/fossil/spine_4",
"jigsaw/murky_stronghold/c-nsw-4",
"trees/mixed/infestedpalm1",
"trees/mixed/infestedpalm2",
"trees/mixed/infestedpalm3",
"jigsaw/village-bits/lanterns-e-4",
"jigsaw/village-bits/lanterns-e-5",
"jigsaw/village-bits/lanterns-e-2",
"jigsaw/village-bits/lanterns-e-3",
"jigsaw/village-bits/lanterns-e-1",
"structures/shiprightsideupfronthalfdegraded",
"jigsaw/village-bits/hay-nes-2",
"trees/birch/largegeneric4",
"jigsaw/village-bits/hay-nes-3",
"trees/birch/largegeneric3",
"trees/birch/largegeneric2",
"jigsaw/village-bits/hay-nes-1",
"trees/birch/largegeneric1",
"jigsaw/village-bits/hay-nes-4",
"trees/acacia/denmyre1",
"jigsaw/village-bits/hay-nes-5",
"trees/acacia/denmyre2",
"jigsaw/village-bits/bland-ns-1",
"jigsaw/village-bits/bland-ns-3",
"jigsaw/village-bits/bland-ns-2",
"jigsaw/village-bits/bland-ns-5",
"jigsaw/village-bits/bland-ns-4",
"trees/darkoak/denmyre12",
"trees/darkoak/denmyre11",
"trees/darkoak/denmyre10",
"trees/darkoak/denmyre16",
"trees/oak/truegeneric4",
"trees/darkoak/denmyre15",
"trees/oak/truegeneric3",
"trees/darkoak/denmyre14",
"trees/mixed/dead1",
"trees/oak/truegeneric2",
"trees/spruce/sup-pine-11",
"trees/darkoak/denmyre13",
"trees/oak/truegeneric1",
"trees/spruce/sup-pine-10",
"trees/oak/truegeneric8",
"trees/spruce/sup-pine-13",
"jigsaw/house-purjap/PurJap10",
"trees/oak/truegeneric7",
"trees/spruce/sup-pine-12",
"trees/oak/truegeneric6",
"trees/oak/truegeneric5",
"trees/birch/largegeneric14",
"trees/jungle/largegeneric4",
"trees/birch/largegeneric15",
"trees/jungle/largegeneric5",
"trees/birch/largegeneric16",
"trees/birch/largegeneric17",
"trees/birch/largegeneric18",
"trees/birch/largegeneric19",
"trees/birch/largegeneric10",
"trees/oak/smwiltedoak1",
"trees/birch/largegeneric11",
"trees/birch/largegeneric12",
"trees/birch/largegeneric13",
"void/void",
"structures/presentmediumreda16",
"trees/jungle/largegeneric1",
"trees/jungle/largegeneric2",
"trees/jungle/largegeneric3",
"jigsaw/fossil/spine_2_coal",
"trees/birch/largegeneric20",
"jigsaw/murky_stronghold/f-nsw-4",
"jigsaw/murky_stronghold/f-nsw-3",
"jigsaw/murky_stronghold/f-nsw-2",
"jigsaw/murky_stronghold/f-nsw-1",
"clutter/rshrub1",
"clutter/rshrub2",
"trees/mixed/tredwood8",
"trees/mixed/tredwood9",
"trees/oak/thoakgeneric10",
"clutter/stone2",
"clutter/stone1",
"trees/mixed/tredwood1",
"trees/mixed/tredwood2",
"trees/mixed/tredwood3",
"clutter/stone6",
"trees/mixed/tredwood4",
"clutter/stone5",
"trees/mixed/tredwood5",
"clutter/hay2",
"clutter/stone4",
"trees/mixed/tredwood6",
"clutter/hay3",
"clutter/stone3",
"trees/mixed/tredwood7",
"clutter/hay1",
"clutter/stone7",
"structures/landstone2",
"structures/landstone1",
"structures/landstone4",
"structures/landstone3",
"structures/landstone5",
"trees/darkoak/smwillow4",
"trees/darkoak/smwillow2",
"trees/darkoak/smwillow3",
"trees/mushroom/fantasygenericred2",
"trees/darkoak/smwillow1",
"trees/mushroom/fantasygenericred1",
"trees/mushroom/fantasygenericred4",
"trees/mushroom/fantasygenericred3",
"trees/mixed/tourmalinelarge2",
"trees/mixed/tourmalinelarge1",
"trees/mixed/tourmalinelarge4",
"trees/mixed/tourmalinelarge3",
"trees/mixed/tourmalinelarge6",
"trees/mixed/tourmalinelarge5",
"trees/mixed/tourmalinelarge8",
"trees/mixed/tourmalinelarge7",
"trees/mixed/tourmalinelarge9",
"clutter/savclutt1",
"clutter/savclutt3",
"clutter/savclutt2",
"clutter/savclutt5",
"clutter/savclutt4",
"clutter/savclutt7",
"clutter/savclutt6",
"clutter/savclutt8",
"clutter/icespiremed3",
"structures/swreck1",
"clutter/icespiremed2",
"jigsaw/village-bits/logger-nes-1",
"clutter/substat1",
"jigsaw/village-bits/logger-nes-2",
"jigsaw/village-bits/logger-nes-3",
"clutter/substat3",
"clutter/substat2",
"clutter/substat5",
"clutter/substat4",
"clutter/icespiremed1",
"jigsaw/underwater_ruin/big_brick_8",
"jigsaw/structure/desert-base",
"jigsaw/underwater_ruin/big_brick_3",
"jigsaw/underwater_ruin/big_brick_2",
"jigsaw/underwater_ruin/big_brick_1",
"trees/oak/smoak3",
"trees/oak/smoak4",
"trees/oak/smoak5",
"trees/oak/smoak6",
"clutter/literalgarbage4",
"trees/oak/smoak1",
"trees/oak/smoak2",
"clutter/literalgarbage2",
"trees/birch/arid6",
"clutter/literalgarbage3",
"trees/birch/arid5",
"clutter/literalgarbage1",
"trees/birch/arid7",
"trees/oak/smoak7",
"clutter/skull1",
"trees/oak/smoak8",
"trees/oak/smoak9",
"jigsaw/village-bits/stonehome-esw-1",
"jigsaw/village-bits/stonehome-esw-2",
"trees/oak/truegeneric9",
"jigsaw/village-bits/logger-nes-4",
"trees/birch/arid2",
"jigsaw/village-bits/logger-nes-5",
"trees/birch/arid1",
"jigsaw/village-bits/stonehome-esw-3",
"trees/birch/arid4",
"jigsaw/village-bits/stonehome-esw-4",
"trees/birch/arid3",
"structures/shipupsidedownfronthalf"
]},
"erzloot": {"enum": [
"frozen-clutter",
"ocean-clutter",
"swamp-food",
"temperate-food",
"amenhotep",
"beach-clutter",
"snow-clutter",
"tropical-treasure",
"global-treasure",
"mushroom-food",
"cave-clutter",
"forest-food",
"cold-treasure",
"global-tools",
"cactus-clutter",
"stronghold/generic",
"stronghold/maze",
"frozen-food",
"stronghold/library",
"cold-food",
"swamp-clutter",
"hot-food",
"mushroom-clutter",
"global-clutter",
"hot-treasure",
"temperate-clutter",
"tropical-food"
]},
"erzravines": {"enum": [
"sandstone/main",
"drip/main",
"red-sandstone/small",
"swamp/main",
"rocky/main",
"volcanic/small",
"jungle/main",
"red-sandstone/main",
"simple/main",
"deep/main",
"sandstone/small",
"amethyst/main",
"simple/small",
"volcanic/main",
"drip/small",
"calcite/small",
"ice/main",
"mixed-sandstone/main",
"swamp/small",
"calcite/main",
"rocky/small",
"mixed-sandstone/small"
]},
"obj-com-volmit-iris-engine-object-irisobjectplacement": {"anyOf": [
{
"description": "Represents an iris object placer. It places objects.",
"type": "object",
"properties": {
"place": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/erzobjects"},
"description": "place\nList of objects to place\n \nList<Object>\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list.\nMust be a valid Object (use ctrl+space for auto complete!)"
},
"rotation": {
"anyOf": [
{
"!required": false,
"type": "object",
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisobjectrotation",
"description": "rotation\nRotate this objects placement\n \nObjectRotation (Object)\nConfigures rotation for iris\n \nYou can instead specify \"snippet/object-rotator/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
{
"type": "string",
"$ref": "#/definitions/enum-snippet-object-rotator",
"description": "rotation\nRotate this objects placement\n \nObjectRotation (Object)\nConfigures rotation for iris\n \nYou can instead specify \"snippet/object-rotator/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
],
"description": "rotation\nRotate this objects placement\n \nObjectRotation (Object)\nConfigures rotation for iris\n \nYou can instead specify \"snippet/object-rotator/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
"clamp": {
"anyOf": [
{
"!required": false,
"type": "object",
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisobjectlimit",
"description": "clamp\nLimit the max height or min height of placement.\n \nObjectLimit (Object)\nTranslate objects\n \nYou can instead specify \"snippet/object-limit/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
{
"type": "string",
"$ref": "#/definitions/enum-snippet-object-limit",
"description": "clamp\nLimit the max height or min height of placement.\n \nObjectLimit (Object)\nTranslate objects\n \nYou can instead specify \"snippet/object-limit/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
],
"description": "clamp\nLimit the max height or min height of placement.\n \nObjectLimit (Object)\nTranslate objects\n \nYou can instead specify \"snippet/object-limit/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
"addFeatures": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisfeaturepotential"},
"description": "addFeatures\nPlace additional noise features in the object's place location\n \nList of FeaturePotentials (Objects)\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list."
},
"snow": {
"type": "number",
"minimum": 0,
"maximum": 1,
"description": "snow\nThe maximum layer level of a snow filter overtop of this placement. Set to 0 to disable. Max of 1.\n \nNumber\n\n \n* Default Value is 0.0\n* Minimum allowed is 0.0\n* Maximum allowed is 1.0"
},
"chance": {
"type": "number",
"minimum": 0,
"maximum": 1,
"description": "chance\nThe chance for this to place in a chunk. If you need multiple per chunk, set this to 1 and use density.\n \nNumber\n\n \n* Default Value is 1.0\n* Minimum allowed is 0.0\n* Maximum allowed is 1.0"
},
"density": {
"type": "integer",
"minimum": 1,
"description": "density\nIf the chance check passes, place this many in a single chunk\n \nInteger\n\n \n* Default Value is 1\n* Minimum allowed is 1"
},
"overStilt": {
"type": "integer",
"minimum": 0,
"maximum": 64,
"description": "overStilt\nIf the place mode is set to stilt, you can over-stilt it even further into the ground. Especially useful when using fast stilt due to inaccuracies.\n \nInteger\n\n \n* Default Value is 0\n* Minimum allowed is 0\n* Maximum allowed is 64"
},
"boreExtendMaxY": {
"type": "integer",
"minimum": 0,
"maximum": 64,
"description": "boreExtendMaxY\nWhen bore is enabled, expand max-y of the cuboid it removes\n \nInteger\n\n \n* Default Value is 0\n* Minimum allowed is 0\n* Maximum allowed is 64"
},
"boreExtendMinY": {
"type": "integer",
"minimum": -1,
"maximum": 64,
"description": "boreExtendMinY\nWhen bore is enabled, lower min-y of the cuboid it removes\n \nInteger\n\n \n* Default Value is 0\n* Minimum allowed is -1\n* Maximum allowed is 64"
},
"vacuumInterpolationRadius": {
"type": "integer",
"minimum": 4,
"maximum": 64,
"description": "vacuumInterpolationRadius\nWhen vacuum is enabled, define the interpolation radius\n \nInteger\n\n \n* Default Value is 16\n* Minimum allowed is 4\n* Maximum allowed is 64"
},
"vacuumInterpolationMethod": {
"type": "string",
"minLength": 4,
"maxLength": 64,
"$ref": "#/definitions/oneof-enum-com-volmit-iris-util-interpolation-interpolationmethod",
"description": "vacuumInterpolationMethod\nWhen vacuum is enabled, define the interpolation method\n \nInterpolationMethod\nAn interpolation method (or function) is simply a method of smoothing a position based on surrounding points on a grid. Bicubic for example is smoother, but has 4 times the checks than Bilinear for example. Try using BILINEAR_STARCAST_9 for beautiful results.\n \n* Default Value is a default object (create this object to see default properties)\n* Minimum Length allowed is 4\n* Maximum Length allowed is 64\nMust be a valid InterpolationMethod (use ctrl+space for auto complete!)"
},
"underwater": {
"type": "boolean",
"description": "underwater\nIf set to true, objects will place on the terrain height, ignoring the water surface.\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
},
"carvingSupport": {
"type": "string",
"$ref": "#/definitions/oneof-enum-com-volmit-iris-engine-object-carvingmode",
"description": "carvingSupport\nIf set to true, objects will place in carvings (such as underground) or under an overhang.\n \nCarvingMode\nDefines if an object is allowed to place in carvings, surfaces or both.\n \n* Default Value is a default object (create this object to see default properties)\nMust be a valid CarvingMode (use ctrl+space for auto complete!)"
},
"heightmap": {
"anyOf": [
{
"!required": false,
"type": "object",
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisnoisegenerator",
"description": "heightmap\nIf this is defined, this object wont place on the terrain heightmap, but instead on this virtual heightmap\n \nNoiseGenerator (Object)\nA noise generator\n \nYou can instead specify \"snippet/generator/some-name.json\" to use a snippet file instead of specifying it here."
},
{
"type": "string",
"$ref": "#/definitions/enum-snippet-generator",
"description": "heightmap\nIf this is defined, this object wont place on the terrain heightmap, but instead on this virtual heightmap\n \nNoiseGenerator (Object)\nA noise generator\n \nYou can instead specify \"snippet/generator/some-name.json\" to use a snippet file instead of specifying it here."
}
],
"description": "heightmap\nIf this is defined, this object wont place on the terrain heightmap, but instead on this virtual heightmap\n \nNoiseGenerator (Object)\nA noise generator\n \nYou can instead specify \"snippet/generator/some-name.json\" to use a snippet file instead of specifying it here."
},
"smartBore": {
"type": "boolean",
"description": "smartBore\nIf set to true, Iris will try to fill the insides of 'rooms' and 'pockets' where air should fit based off of raytrace checks. This prevents a village house placing in an area where a tree already exists, and instead replaces the parts of the tree where the interior of the structure is. \n\nThis operation does not affect warmed-up generation speed however it does slow down loading objects.\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
},
"waterloggable": {
"type": "boolean",
"description": "waterloggable\nIf set to true, Blocks placed underwater that could be waterlogged are waterlogged.\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
},
"onwater": {
"type": "boolean",
"description": "onwater\nIf set to true, objects will place on the fluid height level Such as boats.\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
},
"meld": {
"type": "boolean",
"description": "meld\nIf set to true, this object will only place parts of itself where blocks already exist. Warning: Melding is very performance intensive!\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
},
"bottom": {
"type": "boolean",
"description": "bottom\nIf set to true, this object will place from the ground up instead of height checks when not y locked to the surface. This is not compatable with X and Z axis rotations (it may look off)\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
},
"bore": {
"type": "boolean",
"description": "bore\nIf set to true, air will be placed before the schematic places.\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
},
"warp": {
"anyOf": [
{
"!required": false,
"type": "object",
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisgeneratorstyle",
"description": "warp\nUse a generator to warp the field of coordinates. Using simplex for example would make a square placement warp like a flag\n \nGeneratorStyle (Object)\nA gen style\n \nYou can instead specify \"snippet/style/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
{
"type": "string",
"$ref": "#/definitions/enum-snippet-style",
"description": "warp\nUse a generator to warp the field of coordinates. Using simplex for example would make a square placement warp like a flag\n \nGeneratorStyle (Object)\nA gen style\n \nYou can instead specify \"snippet/style/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
],
"description": "warp\nUse a generator to warp the field of coordinates. Using simplex for example would make a square placement warp like a flag\n \nGeneratorStyle (Object)\nA gen style\n \nYou can instead specify \"snippet/style/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
"translateCenter": {
"type": "boolean",
"description": "translateCenter\nIf the place mode is set to CENTER_HEIGHT_RIGID and you have an X/Z translation, Turning on translate center will also translate the center height check.\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
},
"mode": {
"type": "string",
"$ref": "#/definitions/oneof-enum-com-volmit-iris-engine-object-objectplacemode",
"description": "mode\nThe placement mode\n \nObjectPlaceMode\nObject Place modes are useful for positioning objects just right. The default value is CENTER_HEIGHT.\n \n* Default Value is a default object (create this object to see default properties)\nMust be a valid ObjectPlaceMode (use ctrl+space for auto complete!)"
},
"edit": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisobjectreplace"},
"description": "edit\nFind and replace blocks\n \nList of ObjectReplaces (Objects)\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list."
},
"translate": {
"anyOf": [
{
"!required": false,
"type": "object",
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisobjecttranslate",
"description": "translate\nTranslate this object's placement\n \nObjectTranslate (Object)\nTranslate objects\n \nYou can instead specify \"snippet/object-translator/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
{
"type": "string",
"$ref": "#/definitions/enum-snippet-object-translator",
"description": "translate\nTranslate this object's placement\n \nObjectTranslate (Object)\nTranslate objects\n \nYou can instead specify \"snippet/object-translator/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
],
"description": "translate\nTranslate this object's placement\n \nObjectTranslate (Object)\nTranslate objects\n \nYou can instead specify \"snippet/object-translator/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
"scale": {
"anyOf": [
{
"!required": false,
"type": "object",
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisobjectscale",
"description": "scale\nScale Objects\n \nObjectScale (Object)\nScale objects\n \nYou can instead specify \"snippet/object-scale/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
{
"type": "string",
"$ref": "#/definitions/enum-snippet-object-scale",
"description": "scale\nScale Objects\n \nObjectScale (Object)\nScale objects\n \nYou can instead specify \"snippet/object-scale/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
],
"description": "scale\nScale Objects\n \nObjectScale (Object)\nScale objects\n \nYou can instead specify \"snippet/object-scale/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
"loot": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisobjectloot"},
"description": "loot\nThe loot tables to apply to these objects\n \nList of ObjectLoots (Objects)\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list."
},
"trees": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/obj-com-volmit-iris-engine-object-iristree"},
"description": "trees\nThis object / these objects override the following trees when they grow...\n \nList of Trees (Objects)\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list."
}
}
},
{"type": "string"}
]},
"obj-com-volmit-iris-engine-object-irisobjectlimit": {"anyOf": [
{
"description": "Translate objects",
"type": "object",
"properties": {
"minimumHeight": {
"type": "integer",
"minimum": 0,
"maximum": 255,
"description": "minimumHeight\nThe minimum height for placement (bottom of object)\n \nInteger\n\n \n* Default Value is 0\n* Minimum allowed is 0\n* Maximum allowed is 255"
},
"maximumHeight": {
"type": "integer",
"minimum": 0,
"maximum": 255,
"description": "maximumHeight\nThe maximum height for placement (top of object)\n \nInteger\n\n \n* Default Value is 255\n* Minimum allowed is 0\n* Maximum allowed is 255"
}
}
},
{"type": "string"}
]},
"enum-snippet-object-scale": {"enum": []},
"obj-com-volmit-iris-engine-object-irisnoisegenerator": {"anyOf": [
{
"description": "A noise generator",
"type": "object",
"properties": {
"zoom": {
"type": "number",
"minimum": 1.0E-4,
"description": "zoom\nThe coordinate input zoom\n \nNumber\n\n \n* Default Value is 1.0\n* Minimum allowed is 1.0E-4"
},
"negative": {
"type": "boolean",
"description": "negative\nReverse the output. So that noise = -noise + opacity\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
},
"opacity": {
"type": "number",
"minimum": 0,
"maximum": 1,
"description": "opacity\nThe output multiplier\n \nNumber\n\n \n* Default Value is 1.0\n* Minimum allowed is 0.0\n* Maximum allowed is 1.0"
},
"offsetX": {
"type": "number",
"description": "offsetX\nCoordinate offset x\n \nNumber\n\n \n* Default Value is 0.0"
},
"offsetY": {
"type": "number",
"description": "offsetY\nHeight output offset y. Avoid using with terrain generation.\n \nNumber\n\n \n* Default Value is 0.0"
},
"offsetZ": {
"type": "number",
"description": "offsetZ\nCoordinate offset z\n \nNumber\n\n \n* Default Value is 0.0"
},
"seed": {
"type": "integer",
"description": "seed\nThe seed\n \nInteger\n\n \n* Default Value is 0"
},
"parametric": {
"type": "boolean",
"description": "parametric\nApply a parametric curve on the output\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
},
"bezier": {
"type": "boolean",
"description": "bezier\nApply a bezier curve on the output\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
},
"sinCentered": {
"type": "boolean",
"description": "sinCentered\nApply a sin-center curve on the output (0, and 1 = 0 and 0.5 = 1.0 using a sinoid shape.)\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
},
"exponent": {
"type": "number",
"description": "exponent\nThe exponent noise^EXPONENT\n \nNumber\n\n \n* Default Value is 1.0"
},
"enabled": {
"type": "boolean",
"description": "enabled\nEnable / disable. Outputs offsetY if disabled\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
},
"style": {
"anyOf": [
{
"!required": true,
"type": "object",
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisgeneratorstyle",
"description": "style\nThe Noise Style\n \nGeneratorStyle (Object)\nA gen style\n \nYou can instead specify \"snippet/style/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
{
"type": "string",
"$ref": "#/definitions/enum-snippet-style",
"description": "style\nThe Noise Style\n \nGeneratorStyle (Object)\nA gen style\n \nYou can instead specify \"snippet/style/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
],
"description": "style\nThe Noise Style\n \nGeneratorStyle (Object)\nA gen style\n \nYou can instead specify \"snippet/style/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
"octaves": {
"type": "integer",
"minimum": 1,
"description": "octaves\nMultiple octaves for multple generators of changing zooms added together\n \nInteger\n\n \n* Default Value is 1\n* Minimum allowed is 1"
},
"fracture": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisnoisegenerator"},
"description": "fracture\nApply a child noise generator to fracture the input coordinates of this generator\n \nList of NoiseGenerators (Objects)\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list."
}
}
},
{"type": "string"}
]},
"obj-com-volmit-iris-engine-object-iriselipsoid": {"anyOf": [
{
"description": "Represents an procedural eliptical shape",
"type": "object",
"properties": {
"rarity": {
"type": "integer",
"minimum": 1,
"description": "rarity\nTypically a 1 in RARITY on a per fork basis\n \nInteger\n\n \n* Default Value is 1\n* Minimum allowed is 1"
},
"customBiome": {
"type": "string",
"$ref": "#/definitions/erzbiomes",
"description": "customBiome\nForce this cave to only generate the specified custom biome\n \nIris Biome\n\n \n* Default Value is \nMust be a valid biomes (use ctrl+space for auto complete!)"
},
"xRadius": {
"anyOf": [
{
"!required": false,
"type": "object",
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisstyledrange",
"description": "xRadius\nThe styled random radius for x\n \nStyledRange (Object)\nRepresents a range styled with a custom generator\n \nYou can instead specify \"snippet/style-range/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
{
"type": "string",
"$ref": "#/definitions/enum-snippet-style-range",
"description": "xRadius\nThe styled random radius for x\n \nStyledRange (Object)\nRepresents a range styled with a custom generator\n \nYou can instead specify \"snippet/style-range/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
],
"description": "xRadius\nThe styled random radius for x\n \nStyledRange (Object)\nRepresents a range styled with a custom generator\n \nYou can instead specify \"snippet/style-range/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
"yRadius": {
"anyOf": [
{
"!required": false,
"type": "object",
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisstyledrange",
"description": "yRadius\nThe styled random radius for y\n \nStyledRange (Object)\nRepresents a range styled with a custom generator\n \nYou can instead specify \"snippet/style-range/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
{
"type": "string",
"$ref": "#/definitions/enum-snippet-style-range",
"description": "yRadius\nThe styled random radius for y\n \nStyledRange (Object)\nRepresents a range styled with a custom generator\n \nYou can instead specify \"snippet/style-range/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
],
"description": "yRadius\nThe styled random radius for y\n \nStyledRange (Object)\nRepresents a range styled with a custom generator\n \nYou can instead specify \"snippet/style-range/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
"zRadius": {
"anyOf": [
{
"!required": false,
"type": "object",
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisstyledrange",
"description": "zRadius\nThe styled random radius for z\n \nStyledRange (Object)\nRepresents a range styled with a custom generator\n \nYou can instead specify \"snippet/style-range/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
{
"type": "string",
"$ref": "#/definitions/enum-snippet-style-range",
"description": "zRadius\nThe styled random radius for z\n \nStyledRange (Object)\nRepresents a range styled with a custom generator\n \nYou can instead specify \"snippet/style-range/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
],
"description": "zRadius\nThe styled random radius for z\n \nStyledRange (Object)\nRepresents a range styled with a custom generator\n \nYou can instead specify \"snippet/style-range/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
}
},
{"type": "string"}
]},
"oneof-enum-com-volmit-iris-util-interpolation-interpolationmethod": {"oneOf": [
{
"const": "NONE",
"description": "No interpolation. Nearest Neighbor (bad for terrain, great for performance)."
},
{
"const": "BILINEAR",
"description": "Uses 4 nearby points in a square to calculate a 2d slope. Very fast but creates square artifacts. See: https://en.wikipedia.org/wiki/Bilinear_interpolation"
},
{
"const": "STARCAST_3",
"description": "Starcast is Iris's own creation. It uses raytrace checks to find a horizontal boundary nearby. 3 Checks in a circle. Typically starcast is used with another interpolation method. See BILINEAR_STARCAST_9 For example. Starcast is meant to 'break up' large, abrupt cliffs to make cheap interpolation smoother."
},
{
"const": "STARCAST_6",
"description": "Starcast is Iris's own creation. It uses raytrace checks to find a horizontal boundary nearby. 6 Checks in a circle. Typically starcast is used with another interpolation method. See BILINEAR_STARCAST_9 For example. Starcast is meant to 'break up' large, abrupt cliffs to make cheap interpolation smoother."
},
{
"const": "STARCAST_9",
"description": "Starcast is Iris's own creation. It uses raytrace checks to find a horizontal boundary nearby. 9 Checks in a circle. Typically starcast is used with another interpolation method. See BILINEAR_STARCAST_9 For example. Starcast is meant to 'break up' large, abrupt cliffs to make cheap interpolation smoother."
},
{
"const": "STARCAST_12",
"description": "Starcast is Iris's own creation. It uses raytrace checks to find a horizontal boundary nearby. 12 Checks in a circle. Typically starcast is used with another interpolation method. See BILINEAR_STARCAST_9 For example. Starcast is meant to 'break up' large, abrupt cliffs to make cheap interpolation smoother."
},
{
"const": "BILINEAR_STARCAST_3",
"description": "Uses starcast to break up the abrupt sharp cliffs, then smooths the rest out with bilinear."
},
{
"const": "BILINEAR_STARCAST_6",
"description": "Uses starcast to break up the abrupt sharp cliffs, then smooths the rest out with bilinear."
},
{
"const": "BILINEAR_STARCAST_9",
"description": "Uses starcast to break up the abrupt sharp cliffs, then smooths the rest out with bilinear."
},
{
"const": "BILINEAR_STARCAST_12",
"description": "Uses starcast to break up the abrupt sharp cliffs, then smooths the rest out with bilinear."
},
{
"const": "HERMITE_STARCAST_3",
"description": "Uses starcast to break up the abrupt sharp cliffs, then smooths the rest out with hermite."
},
{
"const": "HERMITE_STARCAST_6",
"description": "Uses starcast to break up the abrupt sharp cliffs, then smooths the rest out with hermite."
},
{
"const": "HERMITE_STARCAST_9",
"description": "Uses starcast to break up the abrupt sharp cliffs, then smooths the rest out with hermite."
},
{
"const": "HERMITE_STARCAST_12",
"description": "Uses starcast to break up the abrupt sharp cliffs, then smooths the rest out with hermite."
},
{
"const": "BILINEAR_BEZIER",
"description": "Uses bilinear but on a bezier curve. See: https://en.wikipedia.org/wiki/Bezier_curve"
},
{
"const": "BILINEAR_PARAMETRIC_2",
"description": "Uses Bilinear but with parametric curves alpha 2."
},
{
"const": "BILINEAR_PARAMETRIC_4",
"description": "Uses Bilinear but with parametric curves alpha 4."
},
{
"const": "BILINEAR_PARAMETRIC_1_5",
"description": "Uses Bilinear but with parametric curves alpha 1.5."
},
{
"const": "BICUBIC",
"description": "Bicubic noise creates 4, 4-point splines for a total of 16 checks. Bcubic can go higher than expected and lower than expected right before a large change in slope."
},
{
"const": "HERMITE",
"description": "Hermite is similar to bicubic, but faster and it can be tuned a little bit"
},
{
"const": "CATMULL_ROM_SPLINE",
"description": "Essentially bicubic with zero tension"
},
{
"const": "HERMITE_TENSE",
"description": "Essentially bicubic with max tension"
},
{
"const": "HERMITE_LOOSE",
"description": "Hermite is similar to bicubic, this variant reduces the dimple artifacts of bicubic"
},
{
"const": "HERMITE_LOOSE_HALF_POSITIVE_BIAS",
"description": "Hermite is similar to bicubic, this variant reduces the dimple artifacts of bicubic"
},
{
"const": "HERMITE_LOOSE_HALF_NEGATIVE_BIAS",
"description": "Hermite is similar to bicubic, this variant reduces the dimple artifacts of bicubic"
},
{
"const": "HERMITE_LOOSE_FULL_POSITIVE_BIAS",
"description": "Hermite is similar to bicubic, this variant reduces the dimple artifacts of bicubic"
},
{
"const": "HERMITE_LOOSE_FULL_NEGATIVE_BIAS",
"description": "Hermite is similar to bicubic, this variant reduces the dimple artifacts of bicubic"
}
]},
"enum-snippet-generator": {"enum": []},
"obj-com-volmit-iris-engine-object-irisobjecttranslate": {"anyOf": [
{
"description": "Translate objects",
"type": "object",
"properties": {
"x": {
"type": "integer",
"minimum": -128,
"maximum": 128,
"description": "x\nThe x shift in blocks\n \nInteger\n\n \n* Default Value is 0\n* Minimum allowed is -128\n* Maximum allowed is 128"
},
"y": {
"type": "integer",
"minimum": -256,
"maximum": 256,
"description": "y\nThe x shift in blocks\n \nInteger\n\n \n* Default Value is 0\n* Minimum allowed is -256\n* Maximum allowed is 256"
},
"yRandom": {
"type": "integer",
"minimum": -128,
"maximum": 128,
"description": "yRandom\nAdds an additional amount of height randomly (translateY + rand(0 - yRandom))\n \nInteger\n\n \n* Default Value is 0\n* Minimum allowed is -128\n* Maximum allowed is 128"
},
"z": {
"type": "integer",
"minimum": -128,
"maximum": 128,
"description": "z\nThe x shift in blocks\n \nInteger\n\n \n* Default Value is 0\n* Minimum allowed is -128\n* Maximum allowed is 128"
}
}
},
{"type": "string"}
]},
"enum-org-bukkit-inventory-itemflag": {"enum": [
"HIDE_ENCHANTS",
"HIDE_ATTRIBUTES",
"HIDE_UNBREAKABLE",
"HIDE_DESTROYS",
"HIDE_PLACED_ON",
"HIDE_POTION_EFFECTS",
"HIDE_DYE"
]},
"oneof-enum-com-volmit-iris-engine-object-irislootmode": {"oneOf": [
{
"const": "ADD",
"description": "Add to the existing parent loot tables"
},
{
"const": "CLEAR",
"description": "Clear all loot tables then add this table"
},
{
"const": "REPLACE",
"description": "Replace all loot tables with this table (same as clear)"
}
]},
"erzscripts": {"enum": []},
"obj-com-volmit-iris-engine-object-irisgeneratorstyle": {"anyOf": [
{
"description": "A gen style",
"type": "object",
"properties": {
"style": {
"type": "string",
"$ref": "#/definitions/oneof-enum-com-volmit-iris-engine-object-noisestyle",
"description": "style\nThe chance is 1 in CHANCE per interval\n \nNoiseStyle\nStyles of noise\n \n* Default Value is a default object (create this object to see default properties)\nMust be a valid NoiseStyle (use ctrl+space for auto complete!)"
},
"zoom": {
"type": "number",
"minimum": 1.0E-5,
"description": "zoom\nThe zoom of this style\n \nNumber\n\n \n* Default Value is 1.0\n* Minimum allowed is 1.0E-5"
},
"expression": {
"type": "string",
"$ref": "#/definitions/erzexpressions",
"description": "expression\nInstead of using the style property, use a custom expression to represent this style.\n \nIris Expression\n\nMust be a valid expressions (use ctrl+space for auto complete!)"
},
"multiplier": {
"type": "number",
"minimum": 1.0E-5,
"description": "multiplier\nThe Output multiplier. Only used if parent is fracture.\n \nNumber\n\n \n* Default Value is 1.0\n* Minimum allowed is 1.0E-5"
},
"axialFracturing": {
"type": "boolean",
"description": "axialFracturing\nIf set to true, each dimension will be fractured with a different order of input coordinates. This is usually 2 or 3 times slower than normal.\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
},
"fracture": {
"anyOf": [
{
"!required": false,
"type": "object",
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisgeneratorstyle",
"description": "fracture\nApply a generator to the coordinate field fed into this parent generator. I.e. Distort your generator with another generator.\n \nGeneratorStyle (Object)\nA gen style\n \nYou can instead specify \"snippet/style/some-name.json\" to use a snippet file instead of specifying it here."
},
{
"type": "string",
"$ref": "#/definitions/enum-snippet-style",
"description": "fracture\nApply a generator to the coordinate field fed into this parent generator. I.e. Distort your generator with another generator.\n \nGeneratorStyle (Object)\nA gen style\n \nYou can instead specify \"snippet/style/some-name.json\" to use a snippet file instead of specifying it here."
}
],
"description": "fracture\nApply a generator to the coordinate field fed into this parent generator. I.e. Distort your generator with another generator.\n \nGeneratorStyle (Object)\nA gen style\n \nYou can instead specify \"snippet/style/some-name.json\" to use a snippet file instead of specifying it here."
},
"exponent": {
"type": "number",
"minimum": 0.01562,
"maximum": 64,
"description": "exponent\nThe exponent\n \nNumber\n\n \n* Default Value is 1.0\n* Minimum allowed is 0.01562\n* Maximum allowed is 64.0"
}
}
},
{"type": "string"}
]},
"obj-com-volmit-iris-engine-object-irisobjectrotation": {"anyOf": [
{
"description": "Configures rotation for iris",
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"description": "enabled\nIf this rotator is enabled or not\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
},
"xAxis": {
"anyOf": [
{
"!required": false,
"type": "object",
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisaxisrotationclamp",
"description": "xAxis\nThe x axis rotation\n \nAxisRotationClamp (Object)\nRepresents a rotation axis with intervals and maxes. The x and z axis values are defaulted to disabled. The Y axis defaults to on, rotating by 90 degree increments.\n \nYou can instead specify \"snippet/axis-rotation/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
{
"type": "string",
"$ref": "#/definitions/enum-snippet-axis-rotation",
"description": "xAxis\nThe x axis rotation\n \nAxisRotationClamp (Object)\nRepresents a rotation axis with intervals and maxes. The x and z axis values are defaulted to disabled. The Y axis defaults to on, rotating by 90 degree increments.\n \nYou can instead specify \"snippet/axis-rotation/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
],
"description": "xAxis\nThe x axis rotation\n \nAxisRotationClamp (Object)\nRepresents a rotation axis with intervals and maxes. The x and z axis values are defaulted to disabled. The Y axis defaults to on, rotating by 90 degree increments.\n \nYou can instead specify \"snippet/axis-rotation/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
"yAxis": {
"anyOf": [
{
"!required": false,
"type": "object",
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisaxisrotationclamp",
"description": "yAxis\nThe y axis rotation\n \nAxisRotationClamp (Object)\nRepresents a rotation axis with intervals and maxes. The x and z axis values are defaulted to disabled. The Y axis defaults to on, rotating by 90 degree increments.\n \nYou can instead specify \"snippet/axis-rotation/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
{
"type": "string",
"$ref": "#/definitions/enum-snippet-axis-rotation",
"description": "yAxis\nThe y axis rotation\n \nAxisRotationClamp (Object)\nRepresents a rotation axis with intervals and maxes. The x and z axis values are defaulted to disabled. The Y axis defaults to on, rotating by 90 degree increments.\n \nYou can instead specify \"snippet/axis-rotation/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
],
"description": "yAxis\nThe y axis rotation\n \nAxisRotationClamp (Object)\nRepresents a rotation axis with intervals and maxes. The x and z axis values are defaulted to disabled. The Y axis defaults to on, rotating by 90 degree increments.\n \nYou can instead specify \"snippet/axis-rotation/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
"zAxis": {
"anyOf": [
{
"!required": false,
"type": "object",
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisaxisrotationclamp",
"description": "zAxis\nThe z axis rotation\n \nAxisRotationClamp (Object)\nRepresents a rotation axis with intervals and maxes. The x and z axis values are defaulted to disabled. The Y axis defaults to on, rotating by 90 degree increments.\n \nYou can instead specify \"snippet/axis-rotation/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
{
"type": "string",
"$ref": "#/definitions/enum-snippet-axis-rotation",
"description": "zAxis\nThe z axis rotation\n \nAxisRotationClamp (Object)\nRepresents a rotation axis with intervals and maxes. The x and z axis values are defaulted to disabled. The Y axis defaults to on, rotating by 90 degree increments.\n \nYou can instead specify \"snippet/axis-rotation/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
],
"description": "zAxis\nThe z axis rotation\n \nAxisRotationClamp (Object)\nRepresents a rotation axis with intervals and maxes. The x and z axis values are defaulted to disabled. The Y axis defaults to on, rotating by 90 degree increments.\n \nYou can instead specify \"snippet/axis-rotation/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
}
},
{"type": "string"}
]},
"enum-snippet-object-translator": {"enum": []},
"oneof-enum-com-volmit-iris-engine-object-irisobjectplacementscaleinterpolator": {"oneOf": [
{
"const": "NONE",
"description": "Don't interpolate, big cubes"
},
{
"const": "TRILINEAR",
"description": "Uses linear interpolation in 3 dimensions, generally pretty good, but slow"
},
{
"const": "TRICUBIC",
"description": "Uses cubic spline interpolation in 3 dimensions, even better, but extreme slowdowns"
},
{
"const": "TRIHERMITE",
"description": "Uses hermite spline interpolation in 3 dimensions, even better, but extreme slowdowns"
}
]},
"enum-snippet-loot-registry": {"enum": []},
"oneof-enum-com-volmit-iris-engine-object-inventoryslottype": {"oneOf": [
{
"const": "STORAGE",
"description": "Typically the one you want to go with. Storage represnents most slots in inventories."
},
{
"const": "FUEL",
"description": "Used for the fuel slot in Furnaces, Blast furnaces, smokers etc."
},
{
"const": "FURNACE",
"description": "Used for the cook slot in furnaces"
},
{
"const": "BLAST_FURNACE",
"description": "Used for the cook slot in blast furnaces"
},
{
"const": "SMOKER",
"description": "Used for the cook slot in smokers"
}
]},
"enum-snippet-palette": {"enum": []},
"obj-com-volmit-iris-engine-object-irisfeaturepotential": {"anyOf": [
{
"description": "Represents a potential Iris zone",
"type": "object",
"properties": {
"rarity": {
"type": "integer",
"minimum": 0,
"description": "rarity\nThe rarity is 1 in X chance per chunk\n \nInteger\n\n \n* Default Value is 100\n* Minimum allowed is 0"
},
"zone": {
"anyOf": [
{
"!required": true,
"type": "object",
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisfeature",
"description": "zone\n\n \nFeature (Object)\nRepresents an Iris zone\n \nYou can instead specify \"snippet/feature/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
{
"type": "string",
"$ref": "#/definitions/enum-snippet-feature",
"description": "zone\n\n \nFeature (Object)\nRepresents an Iris zone\n \nYou can instead specify \"snippet/feature/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
],
"description": "zone\n\n \nFeature (Object)\nRepresents an Iris zone\n \nYou can instead specify \"snippet/feature/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
}
},
{"type": "string"}
]},
"obj-com-volmit-iris-util-collection-kmap": {
"description": "",
"type": "object",
"properties": {}
},
"enum-org-bukkit-dyecolor": {"enum": [
"WHITE",
"ORANGE",
"MAGENTA",
"LIGHT_BLUE",
"YELLOW",
"LIME",
"PINK",
"GRAY",
"LIGHT_GRAY",
"CYAN",
"PURPLE",
"BLUE",
"BROWN",
"GREEN",
"RED",
"BLACK"
]},
"enum-org-bukkit-attribute-attributemodifier-operation": {"enum": [
"ADD_NUMBER",
"ADD_SCALAR",
"MULTIPLY_SCALAR_1"
]},
"obj-com-volmit-iris-engine-object-irisjigsawstructureplacement": {"anyOf": [
{
"description": "Represents a jigsaw structure placer",
"type": "object",
"properties": {
"structure": {
"type": "string",
"$ref": "#/definitions/erzjigsaw-structures",
"description": "structure\nThe structure to place\n \nIris Jigsaw Structure\n\nMust be a valid jigsaw-structures (use ctrl+space for auto complete!)"
},
"rarity": {
"type": "integer",
"description": "rarity\nThe 1 in X chance rarity\n \nInteger\n\n \n* Default Value is 100"
}
}
},
{"type": "string"}
]},
"enum-snippet-style-range": {"enum": []},
"obj-com-volmit-iris-engine-object-irisaxisrotationclamp": {"anyOf": [
{
"description": "Represents a rotation axis with intervals and maxes. The x and z axis values are defaulted to disabled. The Y axis defaults to on, rotating by 90 degree increments.",
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"description": "enabled\nShould this axis be rotated at all?\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
},
"min": {
"type": "number",
"minimum": -360,
"maximum": 360,
"description": "min\nThe minimum angle (from) or set this and max to zero for any angle degrees. Set both to the same non-zero value to force it to that angle only\n \nNumber\n\n \n* Default Value is 0.0\n* Minimum allowed is -360.0\n* Maximum allowed is 360.0"
},
"max": {
"type": "number",
"minimum": -360,
"maximum": 360,
"description": "max\nThe maximum angle (to) or set this and min to zero for any angle degrees. Set both to the same non-zero value to force it to that angle only\n \nNumber\n\n \n* Default Value is 0.0\n* Minimum allowed is -360.0\n* Maximum allowed is 360.0"
},
"interval": {
"type": "number",
"minimum": 0,
"maximum": 360,
"description": "interval\nIris spins the axis but not freely. For example an interval of 90 would mean 4 possible angles (right angles) degrees. \nSetting this to 0 means totally free rotation.\n\nNote that a lot of structures can have issues with non 90 degree intervals because the minecraft block resolution is so low.\n \nNumber\n\n \n* Default Value is 0.0\n* Minimum allowed is 0.0\n* Maximum allowed is 360.0"
}
}
},
{"type": "string"}
]},
"obj-com-volmit-iris-engine-object-irislootreference": {"anyOf": [
{
"description": "Represents a loot entry",
"type": "object",
"properties": {
"mode": {
"type": "string",
"$ref": "#/definitions/oneof-enum-com-volmit-iris-engine-object-irislootmode",
"description": "mode\nAdd = add on top of parent tables, Replace = clear first then add these. Clear = Remove all and dont add loot from this or parent.\n \nLootMode\nA loot mode is used to describe what to do with the existing loot layers before adding this loot. Using ADD will simply add this table to the building list of tables (i.e. add dimension tables, region tables then biome tables). By using clear or replace, you remove the parent tables before and add just your tables.\n \n* Default Value is a default object (create this object to see default properties)\nMust be a valid LootMode (use ctrl+space for auto complete!)"
},
"tables": {
"type": "array",
"minItems": 1,
"items": {"$ref": "#/definitions/erzloot"},
"description": "tables\nAdd loot table registries here\n \nList<Loot>\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list.\nMust be a valid Loot (use ctrl+space for auto complete!)"
},
"multiplier": {
"type": "number",
"minimum": 0,
"description": "multiplier\nIncrease the chance of loot in this area\n \nNumber\n\n \n* Default Value is 1.0\n* Minimum allowed is 0.0"
}
}
},
{"type": "string"}
]},
"obj-com-volmit-iris-engine-object-irisstyledrange": {"anyOf": [
{
"description": "Represents a range styled with a custom generator",
"type": "object",
"properties": {
"min": {
"type": "number",
"description": "min\nThe minimum value\n \nNumber\n\n \n* Default Value is 16.0"
},
"max": {
"type": "number",
"description": "max\nThe maximum value\n \nNumber\n\n \n* Default Value is 32.0"
},
"style": {
"anyOf": [
{
"!required": false,
"type": "object",
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisgeneratorstyle",
"description": "style\nThe style to pick the range\n \nGeneratorStyle (Object)\nA gen style\n \nYou can instead specify \"snippet/style/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
},
{
"type": "string",
"$ref": "#/definitions/enum-snippet-style",
"description": "style\nThe style to pick the range\n \nGeneratorStyle (Object)\nA gen style\n \nYou can instead specify \"snippet/style/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
],
"description": "style\nThe style to pick the range\n \nGeneratorStyle (Object)\nA gen style\n \nYou can instead specify \"snippet/style/some-name.json\" to use a snippet file instead of specifying it here.\n \n* Default Value is a default object (create this object to see default properties)"
}
}
},
{"type": "string"}
]}
}
}