mirror of
https://github.com/IrisDimensions/overworld.git
synced 2026-01-03 22:16:20 +00:00
6383 lines
270 KiB
JSON
6383 lines
270 KiB
JSON
{
|
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
|
"$id": "http://volmit.com/iris-schema/irisdimension.json",
|
|
"description": "Represents a dimension",
|
|
"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 human readable name of this dimension\n \nText\n\n \n* Default Value is A Dimension\n* Minimum Length allowed is 2"
|
|
},
|
|
"stronghold": {
|
|
"type": "string",
|
|
"$ref": "#/definitions/erzjigsaw-structures",
|
|
"description": "stronghold\nIf defined, Iris will place the given jigsaw structure where minecraft should place the overworld stronghold.\n \nIris Jigsaw Structure\n\nMust be a valid jigsaw-structures (use ctrl+space for auto complete!)"
|
|
},
|
|
"debugChunkCrossSections": {
|
|
"type": "boolean",
|
|
"description": "debugChunkCrossSections\nIf set to true, Iris will remove chunks to allow visualizing cross sections of chunks easily\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
|
|
},
|
|
"explodeBiomePalettes": {
|
|
"type": "boolean",
|
|
"description": "explodeBiomePalettes\nVertically split up the biome palettes with 3 air blocks in between to visualize them\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
|
|
},
|
|
"studioMode": {
|
|
"type": "string",
|
|
"$ref": "#/definitions/oneof-enum-com-volmit-iris-engine-object-studiomode",
|
|
"description": "studioMode\nStudio Mode for testing different parts of the world\n \nStudioMode\nRepresents a studio mode\n \n* Default Value is a default object (create this object to see default properties)\nMust be a valid StudioMode (use ctrl+space for auto complete!)"
|
|
},
|
|
"explodeBiomePaletteSize": {
|
|
"type": "integer",
|
|
"minimum": 1,
|
|
"maximum": 16,
|
|
"description": "explodeBiomePaletteSize\nCustomize the palette height explosion\n \nInteger\n\n \n* Default Value is 3\n* Minimum allowed is 1\n* Maximum allowed is 16"
|
|
},
|
|
"debugCrossSectionsMod": {
|
|
"type": "integer",
|
|
"minimum": 2,
|
|
"maximum": 16,
|
|
"description": "debugCrossSectionsMod\nEvery X/Z % debugCrossSectionsMod == 0 cuts the chunk\n \nInteger\n\n \n* Default Value is 3\n* Minimum allowed is 2\n* Maximum allowed is 16"
|
|
},
|
|
"strongholdJumpDistance": {
|
|
"type": "integer",
|
|
"description": "strongholdJumpDistance\nThe average distance between strongholds\n \nInteger\n\n \n* Default Value is 1280"
|
|
},
|
|
"maxStrongholds": {
|
|
"type": "integer",
|
|
"description": "maxStrongholds\nDefine the maximum strongholds to place\n \nInteger\n\n \n* Default Value is 14"
|
|
},
|
|
"aggressiveBiomeReshuffle": {
|
|
"type": "boolean",
|
|
"description": "aggressiveBiomeReshuffle\nImproves the biome grid variation by shuffling the cell grid more depending on the seed. This makes biomes across multiple seeds look far different than before.\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
|
|
},
|
|
"treeSettings": {
|
|
"anyOf": [
|
|
{
|
|
"!required": false,
|
|
"type": "object",
|
|
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-iristreesettings",
|
|
"description": "treeSettings\nTree growth override settings\n \nTreeSettings (Object)\nTree growth override settings\n \nYou can instead specify \"snippet/tree-settings/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-tree-settings",
|
|
"description": "treeSettings\nTree growth override settings\n \nTreeSettings (Object)\nTree growth override settings\n \nYou can instead specify \"snippet/tree-settings/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": "treeSettings\nTree growth override settings\n \nTreeSettings (Object)\nTree growth override settings\n \nYou can instead specify \"snippet/tree-settings/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)"
|
|
},
|
|
"resourcePack": {
|
|
"type": "string",
|
|
"description": "resourcePack\nUpon joining this world, Iris will send a resource pack request to the client. If they have previously selected yes, it will auto-switch depending on which dimension they go to.\n \nText\n\n \n* Default Value is "
|
|
},
|
|
"entitySpawners": {
|
|
"type": "array",
|
|
"minItems": 1,
|
|
"items": {"$ref": "#/definitions/erzspawners"},
|
|
"description": "entitySpawners\nSpawn Entities in this dimension 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!)"
|
|
},
|
|
"specificFeatures": {
|
|
"type": "array",
|
|
"minItems": 1,
|
|
"items": {"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisfeaturepositional"},
|
|
"description": "specificFeatures\nAdd specific features in exact positions\n \nList of FeaturePositionals (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."
|
|
},
|
|
"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)"
|
|
},
|
|
"version": {
|
|
"type": "integer",
|
|
"minimum": 0,
|
|
"description": "version\nThe version of this dimension. Changing this will stop users from accidentally upgrading (and breaking their worlds).\n \nInteger\n\n \n* Default Value is 1\n* Minimum allowed is 0"
|
|
},
|
|
"blockDrops": {
|
|
"type": "array",
|
|
"minItems": 1,
|
|
"items": {"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisblockdrops"},
|
|
"description": "blockDrops\nDefine custom block drops for this dimension\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."
|
|
},
|
|
"bedrock": {
|
|
"type": "boolean",
|
|
"description": "bedrock\nShould bedrock be generated or not.\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
|
|
},
|
|
"landChance": {
|
|
"type": "number",
|
|
"minimum": 0,
|
|
"maximum": 1,
|
|
"description": "landChance\nThe land chance. Up to 1.0 for total land or 0.0 for total sea\n \nNumber\n\n \n* Default Value is 0.625\n* Minimum allowed is 0.0\n* Maximum allowed is 1.0"
|
|
},
|
|
"regionStyle": {
|
|
"anyOf": [
|
|
{
|
|
"!required": false,
|
|
"type": "object",
|
|
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisgeneratorstyle",
|
|
"description": "regionStyle\nThe placement style of regions\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": "regionStyle\nThe placement style of regions\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": "regionStyle\nThe placement style of regions\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)"
|
|
},
|
|
"continentalStyle": {
|
|
"anyOf": [
|
|
{
|
|
"!required": false,
|
|
"type": "object",
|
|
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisgeneratorstyle",
|
|
"description": "continentalStyle\nThe placement style of land/sea\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": "continentalStyle\nThe placement style of land/sea\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": "continentalStyle\nThe placement style of land/sea\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)"
|
|
},
|
|
"landBiomeStyle": {
|
|
"anyOf": [
|
|
{
|
|
"!required": false,
|
|
"type": "object",
|
|
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisgeneratorstyle",
|
|
"description": "landBiomeStyle\nThe placement style of biomes\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": "landBiomeStyle\nThe placement style of biomes\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": "landBiomeStyle\nThe placement style of biomes\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)"
|
|
},
|
|
"shoreBiomeStyle": {
|
|
"anyOf": [
|
|
{
|
|
"!required": false,
|
|
"type": "object",
|
|
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisgeneratorstyle",
|
|
"description": "shoreBiomeStyle\nThe placement style of biomes\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": "shoreBiomeStyle\nThe placement style of biomes\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": "shoreBiomeStyle\nThe placement style of biomes\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)"
|
|
},
|
|
"seaBiomeStyle": {
|
|
"anyOf": [
|
|
{
|
|
"!required": false,
|
|
"type": "object",
|
|
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisgeneratorstyle",
|
|
"description": "seaBiomeStyle\nThe placement style of biomes\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": "seaBiomeStyle\nThe placement style of biomes\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": "seaBiomeStyle\nThe placement style of biomes\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)"
|
|
},
|
|
"caveBiomeStyle": {
|
|
"anyOf": [
|
|
{
|
|
"!required": false,
|
|
"type": "object",
|
|
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisgeneratorstyle",
|
|
"description": "caveBiomeStyle\nThe placement style of biomes\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": "caveBiomeStyle\nThe placement style of biomes\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": "caveBiomeStyle\nThe placement style of biomes\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)"
|
|
},
|
|
"debugSmartBore": {
|
|
"type": "boolean",
|
|
"description": "debugSmartBore\nInstead of filling objects with air, fills them with cobweb so you can see them\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
|
|
},
|
|
"decorate": {
|
|
"type": "boolean",
|
|
"description": "decorate\nGenerate decorations or not\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
|
|
},
|
|
"postProcessing": {
|
|
"type": "boolean",
|
|
"description": "postProcessing\nUse post processing or not\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
|
|
},
|
|
"postProcessingSlabs": {
|
|
"type": "boolean",
|
|
"description": "postProcessingSlabs\nAdd slabs in post processing\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
|
|
},
|
|
"postProcessingWalls": {
|
|
"type": "boolean",
|
|
"description": "postProcessingWalls\nAdd painted walls in post processing\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
|
|
},
|
|
"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)"
|
|
},
|
|
"environment": {
|
|
"type": "string",
|
|
"$ref": "#/definitions/enum-org-bukkit-world-environment",
|
|
"description": "environment\nThe world environment\n \nEnvironment\n\n \n* Default Value is a default object (create this object to see default properties)\nMust be a valid Environment (use ctrl+space for auto complete!)"
|
|
},
|
|
"regions": {
|
|
"type": "array",
|
|
"minItems": 1,
|
|
"items": {"$ref": "#/definitions/erzregions"},
|
|
"description": "regions\nDefine all of the regions to include in this dimension. Dimensions -> Regions -> Biomes -> Objects etc\n \nList<Region>\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 Region (use ctrl+space for auto complete!)"
|
|
},
|
|
"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."
|
|
},
|
|
"fluidHeight": {
|
|
"type": "integer",
|
|
"minimum": 0,
|
|
"maximum": 255,
|
|
"description": "fluidHeight\nThe fluid height for this dimension\n \nInteger\n\n \n* Default Value is 63\n* Minimum allowed is 0\n* Maximum allowed is 255"
|
|
},
|
|
"focus": {
|
|
"type": "string",
|
|
"$ref": "#/definitions/erzbiomes",
|
|
"description": "focus\nKeep this either undefined or empty. Setting any biome name into this will force iris to only generate the specified biome. Great for testing.\n \nIris Biome\n\n \n* Default Value is \nMust be a valid biomes (use ctrl+space for auto complete!)"
|
|
},
|
|
"focusRegion": {
|
|
"type": "string",
|
|
"$ref": "#/definitions/erzbiomes",
|
|
"description": "focusRegion\nKeep this either undefined or empty. Setting any region name into this will force iris to only generate the specified region. Great for testing.\n \nIris Biome\n\n \n* Default Value is \nMust be a valid biomes (use ctrl+space for auto complete!)"
|
|
},
|
|
"biomeZoom": {
|
|
"type": "number",
|
|
"minimum": 1.0E-4,
|
|
"maximum": 512,
|
|
"description": "biomeZoom\nZoom in or out the biome size. Higher = bigger biomes\n \nNumber\n\n \n* Default Value is 5.0\n* Minimum allowed is 1.0E-4\n* Maximum allowed is 512.0"
|
|
},
|
|
"terrainZoom": {
|
|
"type": "number",
|
|
"minimum": 1.0E-4,
|
|
"maximum": 512,
|
|
"description": "terrainZoom\nZoom in or out the terrain. This stretches the terrain. Due to performance improvements, Higher than 2.0 may cause weird rounding artifacts. Lower = more terrain changes per block. Its a true zoom-out.\n \nNumber\n\n \n* Default Value is 1.0\n* Minimum allowed is 1.0E-4\n* Maximum allowed is 512.0"
|
|
},
|
|
"dimensionAngleDeg": {
|
|
"type": "number",
|
|
"minimum": 0,
|
|
"maximum": 360,
|
|
"description": "dimensionAngleDeg\nYou can rotate the input coordinates by an angle. This can make terrain appear more natural (less sharp corners and lines). This literally rotates the entire dimension by an angle. Hint: Try 12 degrees or something not on a 90 or 45 degree angle.\n \nNumber\n\n \n* Default Value is 0.0\n* Minimum allowed is 0.0\n* Maximum allowed is 360.0"
|
|
},
|
|
"coordFractureDistance": {
|
|
"type": "number",
|
|
"minimum": 0,
|
|
"maximum": 8192,
|
|
"description": "coordFractureDistance\nCoordinate fracturing applies noise to the input coordinates. This creates the 'iris swirls' and wavy features. The distance pushes these waves further into places they shouldnt be. This is a block value multiplier.\n \nNumber\n\n \n* Default Value is 20.0\n* Minimum allowed is 0.0\n* Maximum allowed is 8192.0"
|
|
},
|
|
"coordFractureZoom": {
|
|
"type": "number",
|
|
"minimum": 1.0E-4,
|
|
"maximum": 512,
|
|
"description": "coordFractureZoom\nCoordinate fracturing zoom. Higher = less frequent warping, Lower = more frequent and rapid warping / swirls.\n \nNumber\n\n \n* Default Value is 8.0\n* Minimum allowed is 1.0E-4\n* Maximum allowed is 512.0"
|
|
},
|
|
"landZoom": {
|
|
"type": "number",
|
|
"minimum": 1.0E-4,
|
|
"maximum": 512,
|
|
"description": "landZoom\nThis zooms in the land space\n \nNumber\n\n \n* Default Value is 1.0\n* Minimum allowed is 1.0E-4\n* Maximum allowed is 512.0"
|
|
},
|
|
"seaZoom": {
|
|
"type": "number",
|
|
"minimum": 1.0E-4,
|
|
"maximum": 512,
|
|
"description": "seaZoom\nThis zooms oceanic biomes\n \nNumber\n\n \n* Default Value is 1.0\n* Minimum allowed is 1.0E-4\n* Maximum allowed is 512.0"
|
|
},
|
|
"continentZoom": {
|
|
"type": "number",
|
|
"minimum": 1.0E-4,
|
|
"maximum": 512,
|
|
"description": "continentZoom\nZoom in continents\n \nNumber\n\n \n* Default Value is 1.0\n* Minimum allowed is 1.0E-4\n* Maximum allowed is 512.0"
|
|
},
|
|
"regionZoom": {
|
|
"type": "number",
|
|
"minimum": 1.0E-4,
|
|
"maximum": 512,
|
|
"description": "regionZoom\nChange the size of regions\n \nNumber\n\n \n* Default Value is 1.0\n* Minimum allowed is 1.0E-4\n* Maximum allowed is 512.0"
|
|
},
|
|
"useMantle": {
|
|
"type": "boolean",
|
|
"description": "useMantle\nDisable this to stop placing objects, entities, features & updates\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
|
|
},
|
|
"preventLeafDecay": {
|
|
"type": "boolean",
|
|
"description": "preventLeafDecay\nPrevent Leaf decay as if placed in creative mode\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
|
|
},
|
|
"deposits": {
|
|
"type": "array",
|
|
"minItems": 1,
|
|
"items": {"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisdepositgenerator"},
|
|
"description": "deposits\nDefine 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."
|
|
},
|
|
"overlayNoise": {
|
|
"type": "array",
|
|
"minItems": 1,
|
|
"items": {"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisshapedgeneratorstyle"},
|
|
"description": "overlayNoise\nOverlay additional noise on top of the interoplated terrain.\n \nList of ShapedGeneratorStyles (Objects)\n\n \n* Default Value is an empty list\n* At least one entry must be defined, or just remove this list."
|
|
},
|
|
"infiniteEnergy": {
|
|
"type": "boolean",
|
|
"description": "infiniteEnergy\nIf true, the spawner system has infinite energy. This is NOT recommended because it would allow for mobs to keep spawning over and over without a rate limit\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
|
|
},
|
|
"rockZoom": {
|
|
"type": "number",
|
|
"minimum": 1.0E-4,
|
|
"maximum": 512,
|
|
"description": "rockZoom\nThe rock 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\n* Maximum allowed is 512.0"
|
|
},
|
|
"rockPalette": {
|
|
"anyOf": [
|
|
{
|
|
"!required": false,
|
|
"type": "object",
|
|
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irismaterialpalette",
|
|
"description": "rockPalette\nThe palette of blocks for 'stone'\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": "rockPalette\nThe palette of blocks for 'stone'\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": "rockPalette\nThe palette of blocks for 'stone'\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)"
|
|
},
|
|
"fluidPalette": {
|
|
"anyOf": [
|
|
{
|
|
"!required": false,
|
|
"type": "object",
|
|
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irismaterialpalette",
|
|
"description": "fluidPalette\nThe palette of blocks for 'water'\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": "fluidPalette\nThe palette of blocks for 'water'\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": "fluidPalette\nThe palette of blocks for 'water'\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)"
|
|
},
|
|
"patchCartographers": {
|
|
"anyOf": [
|
|
{
|
|
"!required": false,
|
|
"type": "object",
|
|
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisvillageroverride",
|
|
"description": "patchCartographers\nCartographer map trade overrides\n \nVillagerOverride (Object)\nOverride cartographer map trades with others or disable the trade altogether\n \nYou can instead specify \"snippet/villager-override/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-villager-override",
|
|
"description": "patchCartographers\nCartographer map trade overrides\n \nVillagerOverride (Object)\nOverride cartographer map trades with others or disable the trade altogether\n \nYou can instead specify \"snippet/villager-override/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": "patchCartographers\nCartographer map trade overrides\n \nVillagerOverride (Object)\nOverride cartographer map trades with others or disable the trade altogether\n \nYou can instead specify \"snippet/villager-override/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)"
|
|
}
|
|
},
|
|
"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-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"}
|
|
]},
|
|
"erzregions": {"enum": [
|
|
"tropical",
|
|
"tundra",
|
|
"temperate",
|
|
"frozen",
|
|
"hot",
|
|
"swamp",
|
|
"mushroom"
|
|
]},
|
|
"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"
|
|
]},
|
|
"enum-snippet-villager-override": {"enum": []},
|
|
"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-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)"
|
|
}
|
|
}
|
|
},
|
|
"enum-snippet-feature": {"enum": []},
|
|
"enum-org-bukkit-world-environment": {"enum": [
|
|
"NORMAL",
|
|
"NETHER",
|
|
"THE_END",
|
|
"CUSTOM"
|
|
]},
|
|
"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"}
|
|
]},
|
|
"obj-com-volmit-iris-engine-object-irisfeaturepositional": {"anyOf": [
|
|
{
|
|
"description": "Represents an Iris zone",
|
|
"type": "object",
|
|
"properties": {
|
|
"x": {
|
|
"type": "integer",
|
|
"description": "x\nThe x coordinate of this zone\n \nInteger\n\n \n* Default Value is 0"
|
|
},
|
|
"z": {
|
|
"type": "integer",
|
|
"description": "z\nThe z coordinate of this zone\n \nInteger\n\n \n* Default Value is 0"
|
|
},
|
|
"feature": {
|
|
"anyOf": [
|
|
{
|
|
"!required": true,
|
|
"type": "object",
|
|
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisfeature",
|
|
"description": "feature\nThe Terrain Feature to apply\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."
|
|
},
|
|
{
|
|
"type": "string",
|
|
"$ref": "#/definitions/enum-snippet-feature",
|
|
"description": "feature\nThe Terrain Feature to apply\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."
|
|
}
|
|
],
|
|
"description": "feature\nThe Terrain Feature to apply\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."
|
|
}
|
|
}
|
|
},
|
|
{"type": "string"}
|
|
]},
|
|
"enum-snippet-carving": {"enum": []},
|
|
"erzexpressions": {"enum": []},
|
|
"obj-com-volmit-iris-engine-object-irisshapedgeneratorstyle": {"anyOf": [
|
|
{
|
|
"description": "This represents a generator with a min and max height",
|
|
"type": "object",
|
|
"properties": {
|
|
"generator": {
|
|
"anyOf": [
|
|
{
|
|
"!required": true,
|
|
"type": "object",
|
|
"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisgeneratorstyle",
|
|
"description": "generator\nThe generator id\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": "generator\nThe generator id\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": "generator\nThe generator id\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)"
|
|
},
|
|
"min": {
|
|
"type": "integer",
|
|
"minimum": -256,
|
|
"maximum": 256,
|
|
"description": "min\nThe min block value\n \nInteger\n\n \n* Default Value is 0\n* Minimum allowed is -256\n* Maximum allowed is 256"
|
|
},
|
|
"max": {
|
|
"type": "integer",
|
|
"minimum": -256,
|
|
"maximum": 256,
|
|
"description": "max\nThe max block value\n \nInteger\n\n \n* Default Value is 0\n* Minimum allowed is -256\n* Maximum allowed is 256"
|
|
}
|
|
}
|
|
},
|
|
{"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"
|
|
]},
|
|
"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"}
|
|
]},
|
|
"obj-org-bukkit-inventory-itemstack": {
|
|
"description": "",
|
|
"type": "object",
|
|
"properties": {
|
|
"type": {
|
|
"type": "string",
|
|
"$ref": "#/definitions/enum-org-bukkit-material",
|
|
"description": "type\nBukkit package classes and enums have no descriptions\n \nMaterial\n\nMust be a valid Material (use ctrl+space for auto complete!)"
|
|
},
|
|
"amount": {
|
|
"type": "integer",
|
|
"description": "amount\nBukkit package classes and enums have no descriptions\n \nInteger\n"
|
|
},
|
|
"data": {
|
|
"type": "object",
|
|
"$ref": "#/definitions/obj-org-bukkit-material-materialdata",
|
|
"description": "data\nBukkit package classes and enums have no descriptions\n \nMaterialData (Object)\n"
|
|
},
|
|
"meta": {
|
|
"type": "object",
|
|
"$ref": "#/definitions/obj-org-bukkit-inventory-meta-itemmeta",
|
|
"description": "meta\nBukkit package classes and enums have no descriptions\n \nItemMeta (Object)\n"
|
|
}
|
|
}
|
|
},
|
|
"obj-com-volmit-iris-engine-object-iristreesettings": {"anyOf": [
|
|
{
|
|
"description": "Tree growth override settings",
|
|
"type": "object",
|
|
"properties": {
|
|
"enabled": {
|
|
"type": "boolean",
|
|
"description": "enabled\nTurn replacing on and off\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-iristreemodes",
|
|
"description": "mode\nObject picking modes\n \nTreeModes\nSapling override object picking options\n \n* Default Value is a default object (create this object to see default properties)\nMust be a valid TreeModes (use ctrl+space for auto complete!)"
|
|
}
|
|
}
|
|
},
|
|
{"type": "string"}
|
|
]},
|
|
"enum-snippet-tree-settings": {"enum": []},
|
|
"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"}
|
|
]},
|
|
"obj-com-volmit-iris-engine-object-irisvillageroverride": {"anyOf": [
|
|
{
|
|
"description": "Override cartographer map trades with others or disable the trade altogether",
|
|
"type": "object",
|
|
"properties": {
|
|
"disableTrade": {
|
|
"type": "boolean",
|
|
"description": "disableTrade\nDisable the trade altogether.\nIf a cartographer villager gets a new explorer map trade:\nIf this is enabled -> the trade is removed\nIf this is disabled -> the trade is replaced with the \"override\" setting below\nDefault is true, so if you omit this, trades will be removed.\n \nBoolean\n\n \n* Default Value is a default object (create this object to see default properties)"
|
|
},
|
|
"items": {
|
|
"type": "array",
|
|
"minItems": 1,
|
|
"items": {"$ref": "#/definitions/obj-com-volmit-iris-engine-object-irisvillagertrade"},
|
|
"description": "items\nThe items to override the cartographer trade with.\nBy default, this is:\n 3 emeralds + 3 glass blocks -> 1 spyglass.\n Can trade 3 to 5 times\n \nList of VillagerTrades (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"}
|
|
]},
|
|
"enum-org-bukkit-material": {"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",
|
|
"LEGACY_AIR",
|
|
"LEGACY_STONE",
|
|
"LEGACY_GRASS",
|
|
"LEGACY_DIRT",
|
|
"LEGACY_COBBLESTONE",
|
|
"LEGACY_WOOD",
|
|
"LEGACY_SAPLING",
|
|
"LEGACY_BEDROCK",
|
|
"LEGACY_WATER",
|
|
"LEGACY_STATIONARY_WATER",
|
|
"LEGACY_LAVA",
|
|
"LEGACY_STATIONARY_LAVA",
|
|
"LEGACY_SAND",
|
|
"LEGACY_GRAVEL",
|
|
"LEGACY_GOLD_ORE",
|
|
"LEGACY_IRON_ORE",
|
|
"LEGACY_COAL_ORE",
|
|
"LEGACY_LOG",
|
|
"LEGACY_LEAVES",
|
|
"LEGACY_SPONGE",
|
|
"LEGACY_GLASS",
|
|
"LEGACY_LAPIS_ORE",
|
|
"LEGACY_LAPIS_BLOCK",
|
|
"LEGACY_DISPENSER",
|
|
"LEGACY_SANDSTONE",
|
|
"LEGACY_NOTE_BLOCK",
|
|
"LEGACY_BED_BLOCK",
|
|
"LEGACY_POWERED_RAIL",
|
|
"LEGACY_DETECTOR_RAIL",
|
|
"LEGACY_PISTON_STICKY_BASE",
|
|
"LEGACY_WEB",
|
|
"LEGACY_LONG_GRASS",
|
|
"LEGACY_DEAD_BUSH",
|
|
"LEGACY_PISTON_BASE",
|
|
"LEGACY_PISTON_EXTENSION",
|
|
"LEGACY_WOOL",
|
|
"LEGACY_PISTON_MOVING_PIECE",
|
|
"LEGACY_YELLOW_FLOWER",
|
|
"LEGACY_RED_ROSE",
|
|
"LEGACY_BROWN_MUSHROOM",
|
|
"LEGACY_RED_MUSHROOM",
|
|
"LEGACY_GOLD_BLOCK",
|
|
"LEGACY_IRON_BLOCK",
|
|
"LEGACY_DOUBLE_STEP",
|
|
"LEGACY_STEP",
|
|
"LEGACY_BRICK",
|
|
"LEGACY_TNT",
|
|
"LEGACY_BOOKSHELF",
|
|
"LEGACY_MOSSY_COBBLESTONE",
|
|
"LEGACY_OBSIDIAN",
|
|
"LEGACY_TORCH",
|
|
"LEGACY_FIRE",
|
|
"LEGACY_MOB_SPAWNER",
|
|
"LEGACY_WOOD_STAIRS",
|
|
"LEGACY_CHEST",
|
|
"LEGACY_REDSTONE_WIRE",
|
|
"LEGACY_DIAMOND_ORE",
|
|
"LEGACY_DIAMOND_BLOCK",
|
|
"LEGACY_WORKBENCH",
|
|
"LEGACY_CROPS",
|
|
"LEGACY_SOIL",
|
|
"LEGACY_FURNACE",
|
|
"LEGACY_BURNING_FURNACE",
|
|
"LEGACY_SIGN_POST",
|
|
"LEGACY_WOODEN_DOOR",
|
|
"LEGACY_LADDER",
|
|
"LEGACY_RAILS",
|
|
"LEGACY_COBBLESTONE_STAIRS",
|
|
"LEGACY_WALL_SIGN",
|
|
"LEGACY_LEVER",
|
|
"LEGACY_STONE_PLATE",
|
|
"LEGACY_IRON_DOOR_BLOCK",
|
|
"LEGACY_WOOD_PLATE",
|
|
"LEGACY_REDSTONE_ORE",
|
|
"LEGACY_GLOWING_REDSTONE_ORE",
|
|
"LEGACY_REDSTONE_TORCH_OFF",
|
|
"LEGACY_REDSTONE_TORCH_ON",
|
|
"LEGACY_STONE_BUTTON",
|
|
"LEGACY_SNOW",
|
|
"LEGACY_ICE",
|
|
"LEGACY_SNOW_BLOCK",
|
|
"LEGACY_CACTUS",
|
|
"LEGACY_CLAY",
|
|
"LEGACY_SUGAR_CANE_BLOCK",
|
|
"LEGACY_JUKEBOX",
|
|
"LEGACY_FENCE",
|
|
"LEGACY_PUMPKIN",
|
|
"LEGACY_NETHERRACK",
|
|
"LEGACY_SOUL_SAND",
|
|
"LEGACY_GLOWSTONE",
|
|
"LEGACY_PORTAL",
|
|
"LEGACY_JACK_O_LANTERN",
|
|
"LEGACY_CAKE_BLOCK",
|
|
"LEGACY_DIODE_BLOCK_OFF",
|
|
"LEGACY_DIODE_BLOCK_ON",
|
|
"LEGACY_STAINED_GLASS",
|
|
"LEGACY_TRAP_DOOR",
|
|
"LEGACY_MONSTER_EGGS",
|
|
"LEGACY_SMOOTH_BRICK",
|
|
"LEGACY_HUGE_MUSHROOM_1",
|
|
"LEGACY_HUGE_MUSHROOM_2",
|
|
"LEGACY_IRON_FENCE",
|
|
"LEGACY_THIN_GLASS",
|
|
"LEGACY_MELON_BLOCK",
|
|
"LEGACY_PUMPKIN_STEM",
|
|
"LEGACY_MELON_STEM",
|
|
"LEGACY_VINE",
|
|
"LEGACY_FENCE_GATE",
|
|
"LEGACY_BRICK_STAIRS",
|
|
"LEGACY_SMOOTH_STAIRS",
|
|
"LEGACY_MYCEL",
|
|
"LEGACY_WATER_LILY",
|
|
"LEGACY_NETHER_BRICK",
|
|
"LEGACY_NETHER_FENCE",
|
|
"LEGACY_NETHER_BRICK_STAIRS",
|
|
"LEGACY_NETHER_WARTS",
|
|
"LEGACY_ENCHANTMENT_TABLE",
|
|
"LEGACY_BREWING_STAND",
|
|
"LEGACY_CAULDRON",
|
|
"LEGACY_ENDER_PORTAL",
|
|
"LEGACY_ENDER_PORTAL_FRAME",
|
|
"LEGACY_ENDER_STONE",
|
|
"LEGACY_DRAGON_EGG",
|
|
"LEGACY_REDSTONE_LAMP_OFF",
|
|
"LEGACY_REDSTONE_LAMP_ON",
|
|
"LEGACY_WOOD_DOUBLE_STEP",
|
|
"LEGACY_WOOD_STEP",
|
|
"LEGACY_COCOA",
|
|
"LEGACY_SANDSTONE_STAIRS",
|
|
"LEGACY_EMERALD_ORE",
|
|
"LEGACY_ENDER_CHEST",
|
|
"LEGACY_TRIPWIRE_HOOK",
|
|
"LEGACY_TRIPWIRE",
|
|
"LEGACY_EMERALD_BLOCK",
|
|
"LEGACY_SPRUCE_WOOD_STAIRS",
|
|
"LEGACY_BIRCH_WOOD_STAIRS",
|
|
"LEGACY_JUNGLE_WOOD_STAIRS",
|
|
"LEGACY_COMMAND",
|
|
"LEGACY_BEACON",
|
|
"LEGACY_COBBLE_WALL",
|
|
"LEGACY_FLOWER_POT",
|
|
"LEGACY_CARROT",
|
|
"LEGACY_POTATO",
|
|
"LEGACY_WOOD_BUTTON",
|
|
"LEGACY_SKULL",
|
|
"LEGACY_ANVIL",
|
|
"LEGACY_TRAPPED_CHEST",
|
|
"LEGACY_GOLD_PLATE",
|
|
"LEGACY_IRON_PLATE",
|
|
"LEGACY_REDSTONE_COMPARATOR_OFF",
|
|
"LEGACY_REDSTONE_COMPARATOR_ON",
|
|
"LEGACY_DAYLIGHT_DETECTOR",
|
|
"LEGACY_REDSTONE_BLOCK",
|
|
"LEGACY_QUARTZ_ORE",
|
|
"LEGACY_HOPPER",
|
|
"LEGACY_QUARTZ_BLOCK",
|
|
"LEGACY_QUARTZ_STAIRS",
|
|
"LEGACY_ACTIVATOR_RAIL",
|
|
"LEGACY_DROPPER",
|
|
"LEGACY_STAINED_CLAY",
|
|
"LEGACY_STAINED_GLASS_PANE",
|
|
"LEGACY_LEAVES_2",
|
|
"LEGACY_LOG_2",
|
|
"LEGACY_ACACIA_STAIRS",
|
|
"LEGACY_DARK_OAK_STAIRS",
|
|
"LEGACY_SLIME_BLOCK",
|
|
"LEGACY_BARRIER",
|
|
"LEGACY_IRON_TRAPDOOR",
|
|
"LEGACY_PRISMARINE",
|
|
"LEGACY_SEA_LANTERN",
|
|
"LEGACY_HAY_BLOCK",
|
|
"LEGACY_CARPET",
|
|
"LEGACY_HARD_CLAY",
|
|
"LEGACY_COAL_BLOCK",
|
|
"LEGACY_PACKED_ICE",
|
|
"LEGACY_DOUBLE_PLANT",
|
|
"LEGACY_STANDING_BANNER",
|
|
"LEGACY_WALL_BANNER",
|
|
"LEGACY_DAYLIGHT_DETECTOR_INVERTED",
|
|
"LEGACY_RED_SANDSTONE",
|
|
"LEGACY_RED_SANDSTONE_STAIRS",
|
|
"LEGACY_DOUBLE_STONE_SLAB2",
|
|
"LEGACY_STONE_SLAB2",
|
|
"LEGACY_SPRUCE_FENCE_GATE",
|
|
"LEGACY_BIRCH_FENCE_GATE",
|
|
"LEGACY_JUNGLE_FENCE_GATE",
|
|
"LEGACY_DARK_OAK_FENCE_GATE",
|
|
"LEGACY_ACACIA_FENCE_GATE",
|
|
"LEGACY_SPRUCE_FENCE",
|
|
"LEGACY_BIRCH_FENCE",
|
|
"LEGACY_JUNGLE_FENCE",
|
|
"LEGACY_DARK_OAK_FENCE",
|
|
"LEGACY_ACACIA_FENCE",
|
|
"LEGACY_SPRUCE_DOOR",
|
|
"LEGACY_BIRCH_DOOR",
|
|
"LEGACY_JUNGLE_DOOR",
|
|
"LEGACY_ACACIA_DOOR",
|
|
"LEGACY_DARK_OAK_DOOR",
|
|
"LEGACY_END_ROD",
|
|
"LEGACY_CHORUS_PLANT",
|
|
"LEGACY_CHORUS_FLOWER",
|
|
"LEGACY_PURPUR_BLOCK",
|
|
"LEGACY_PURPUR_PILLAR",
|
|
"LEGACY_PURPUR_STAIRS",
|
|
"LEGACY_PURPUR_DOUBLE_SLAB",
|
|
"LEGACY_PURPUR_SLAB",
|
|
"LEGACY_END_BRICKS",
|
|
"LEGACY_BEETROOT_BLOCK",
|
|
"LEGACY_GRASS_PATH",
|
|
"LEGACY_END_GATEWAY",
|
|
"LEGACY_COMMAND_REPEATING",
|
|
"LEGACY_COMMAND_CHAIN",
|
|
"LEGACY_FROSTED_ICE",
|
|
"LEGACY_MAGMA",
|
|
"LEGACY_NETHER_WART_BLOCK",
|
|
"LEGACY_RED_NETHER_BRICK",
|
|
"LEGACY_BONE_BLOCK",
|
|
"LEGACY_STRUCTURE_VOID",
|
|
"LEGACY_OBSERVER",
|
|
"LEGACY_WHITE_SHULKER_BOX",
|
|
"LEGACY_ORANGE_SHULKER_BOX",
|
|
"LEGACY_MAGENTA_SHULKER_BOX",
|
|
"LEGACY_LIGHT_BLUE_SHULKER_BOX",
|
|
"LEGACY_YELLOW_SHULKER_BOX",
|
|
"LEGACY_LIME_SHULKER_BOX",
|
|
"LEGACY_PINK_SHULKER_BOX",
|
|
"LEGACY_GRAY_SHULKER_BOX",
|
|
"LEGACY_SILVER_SHULKER_BOX",
|
|
"LEGACY_CYAN_SHULKER_BOX",
|
|
"LEGACY_PURPLE_SHULKER_BOX",
|
|
"LEGACY_BLUE_SHULKER_BOX",
|
|
"LEGACY_BROWN_SHULKER_BOX",
|
|
"LEGACY_GREEN_SHULKER_BOX",
|
|
"LEGACY_RED_SHULKER_BOX",
|
|
"LEGACY_BLACK_SHULKER_BOX",
|
|
"LEGACY_WHITE_GLAZED_TERRACOTTA",
|
|
"LEGACY_ORANGE_GLAZED_TERRACOTTA",
|
|
"LEGACY_MAGENTA_GLAZED_TERRACOTTA",
|
|
"LEGACY_LIGHT_BLUE_GLAZED_TERRACOTTA",
|
|
"LEGACY_YELLOW_GLAZED_TERRACOTTA",
|
|
"LEGACY_LIME_GLAZED_TERRACOTTA",
|
|
"LEGACY_PINK_GLAZED_TERRACOTTA",
|
|
"LEGACY_GRAY_GLAZED_TERRACOTTA",
|
|
"LEGACY_SILVER_GLAZED_TERRACOTTA",
|
|
"LEGACY_CYAN_GLAZED_TERRACOTTA",
|
|
"LEGACY_PURPLE_GLAZED_TERRACOTTA",
|
|
"LEGACY_BLUE_GLAZED_TERRACOTTA",
|
|
"LEGACY_BROWN_GLAZED_TERRACOTTA",
|
|
"LEGACY_GREEN_GLAZED_TERRACOTTA",
|
|
"LEGACY_RED_GLAZED_TERRACOTTA",
|
|
"LEGACY_BLACK_GLAZED_TERRACOTTA",
|
|
"LEGACY_CONCRETE",
|
|
"LEGACY_CONCRETE_POWDER",
|
|
"LEGACY_STRUCTURE_BLOCK",
|
|
"LEGACY_IRON_SPADE",
|
|
"LEGACY_IRON_PICKAXE",
|
|
"LEGACY_IRON_AXE",
|
|
"LEGACY_FLINT_AND_STEEL",
|
|
"LEGACY_APPLE",
|
|
"LEGACY_BOW",
|
|
"LEGACY_ARROW",
|
|
"LEGACY_COAL",
|
|
"LEGACY_DIAMOND",
|
|
"LEGACY_IRON_INGOT",
|
|
"LEGACY_GOLD_INGOT",
|
|
"LEGACY_IRON_SWORD",
|
|
"LEGACY_WOOD_SWORD",
|
|
"LEGACY_WOOD_SPADE",
|
|
"LEGACY_WOOD_PICKAXE",
|
|
"LEGACY_WOOD_AXE",
|
|
"LEGACY_STONE_SWORD",
|
|
"LEGACY_STONE_SPADE",
|
|
"LEGACY_STONE_PICKAXE",
|
|
"LEGACY_STONE_AXE",
|
|
"LEGACY_DIAMOND_SWORD",
|
|
"LEGACY_DIAMOND_SPADE",
|
|
"LEGACY_DIAMOND_PICKAXE",
|
|
"LEGACY_DIAMOND_AXE",
|
|
"LEGACY_STICK",
|
|
"LEGACY_BOWL",
|
|
"LEGACY_MUSHROOM_SOUP",
|
|
"LEGACY_GOLD_SWORD",
|
|
"LEGACY_GOLD_SPADE",
|
|
"LEGACY_GOLD_PICKAXE",
|
|
"LEGACY_GOLD_AXE",
|
|
"LEGACY_STRING",
|
|
"LEGACY_FEATHER",
|
|
"LEGACY_SULPHUR",
|
|
"LEGACY_WOOD_HOE",
|
|
"LEGACY_STONE_HOE",
|
|
"LEGACY_IRON_HOE",
|
|
"LEGACY_DIAMOND_HOE",
|
|
"LEGACY_GOLD_HOE",
|
|
"LEGACY_SEEDS",
|
|
"LEGACY_WHEAT",
|
|
"LEGACY_BREAD",
|
|
"LEGACY_LEATHER_HELMET",
|
|
"LEGACY_LEATHER_CHESTPLATE",
|
|
"LEGACY_LEATHER_LEGGINGS",
|
|
"LEGACY_LEATHER_BOOTS",
|
|
"LEGACY_CHAINMAIL_HELMET",
|
|
"LEGACY_CHAINMAIL_CHESTPLATE",
|
|
"LEGACY_CHAINMAIL_LEGGINGS",
|
|
"LEGACY_CHAINMAIL_BOOTS",
|
|
"LEGACY_IRON_HELMET",
|
|
"LEGACY_IRON_CHESTPLATE",
|
|
"LEGACY_IRON_LEGGINGS",
|
|
"LEGACY_IRON_BOOTS",
|
|
"LEGACY_DIAMOND_HELMET",
|
|
"LEGACY_DIAMOND_CHESTPLATE",
|
|
"LEGACY_DIAMOND_LEGGINGS",
|
|
"LEGACY_DIAMOND_BOOTS",
|
|
"LEGACY_GOLD_HELMET",
|
|
"LEGACY_GOLD_CHESTPLATE",
|
|
"LEGACY_GOLD_LEGGINGS",
|
|
"LEGACY_GOLD_BOOTS",
|
|
"LEGACY_FLINT",
|
|
"LEGACY_PORK",
|
|
"LEGACY_GRILLED_PORK",
|
|
"LEGACY_PAINTING",
|
|
"LEGACY_GOLDEN_APPLE",
|
|
"LEGACY_SIGN",
|
|
"LEGACY_WOOD_DOOR",
|
|
"LEGACY_BUCKET",
|
|
"LEGACY_WATER_BUCKET",
|
|
"LEGACY_LAVA_BUCKET",
|
|
"LEGACY_MINECART",
|
|
"LEGACY_SADDLE",
|
|
"LEGACY_IRON_DOOR",
|
|
"LEGACY_REDSTONE",
|
|
"LEGACY_SNOW_BALL",
|
|
"LEGACY_BOAT",
|
|
"LEGACY_LEATHER",
|
|
"LEGACY_MILK_BUCKET",
|
|
"LEGACY_CLAY_BRICK",
|
|
"LEGACY_CLAY_BALL",
|
|
"LEGACY_SUGAR_CANE",
|
|
"LEGACY_PAPER",
|
|
"LEGACY_BOOK",
|
|
"LEGACY_SLIME_BALL",
|
|
"LEGACY_STORAGE_MINECART",
|
|
"LEGACY_POWERED_MINECART",
|
|
"LEGACY_EGG",
|
|
"LEGACY_COMPASS",
|
|
"LEGACY_FISHING_ROD",
|
|
"LEGACY_WATCH",
|
|
"LEGACY_GLOWSTONE_DUST",
|
|
"LEGACY_RAW_FISH",
|
|
"LEGACY_COOKED_FISH",
|
|
"LEGACY_INK_SACK",
|
|
"LEGACY_BONE",
|
|
"LEGACY_SUGAR",
|
|
"LEGACY_CAKE",
|
|
"LEGACY_BED",
|
|
"LEGACY_DIODE",
|
|
"LEGACY_COOKIE",
|
|
"LEGACY_MAP",
|
|
"LEGACY_SHEARS",
|
|
"LEGACY_MELON",
|
|
"LEGACY_PUMPKIN_SEEDS",
|
|
"LEGACY_MELON_SEEDS",
|
|
"LEGACY_RAW_BEEF",
|
|
"LEGACY_COOKED_BEEF",
|
|
"LEGACY_RAW_CHICKEN",
|
|
"LEGACY_COOKED_CHICKEN",
|
|
"LEGACY_ROTTEN_FLESH",
|
|
"LEGACY_ENDER_PEARL",
|
|
"LEGACY_BLAZE_ROD",
|
|
"LEGACY_GHAST_TEAR",
|
|
"LEGACY_GOLD_NUGGET",
|
|
"LEGACY_NETHER_STALK",
|
|
"LEGACY_POTION",
|
|
"LEGACY_GLASS_BOTTLE",
|
|
"LEGACY_SPIDER_EYE",
|
|
"LEGACY_FERMENTED_SPIDER_EYE",
|
|
"LEGACY_BLAZE_POWDER",
|
|
"LEGACY_MAGMA_CREAM",
|
|
"LEGACY_BREWING_STAND_ITEM",
|
|
"LEGACY_CAULDRON_ITEM",
|
|
"LEGACY_EYE_OF_ENDER",
|
|
"LEGACY_SPECKLED_MELON",
|
|
"LEGACY_MONSTER_EGG",
|
|
"LEGACY_EXP_BOTTLE",
|
|
"LEGACY_FIREBALL",
|
|
"LEGACY_BOOK_AND_QUILL",
|
|
"LEGACY_WRITTEN_BOOK",
|
|
"LEGACY_EMERALD",
|
|
"LEGACY_ITEM_FRAME",
|
|
"LEGACY_FLOWER_POT_ITEM",
|
|
"LEGACY_CARROT_ITEM",
|
|
"LEGACY_POTATO_ITEM",
|
|
"LEGACY_BAKED_POTATO",
|
|
"LEGACY_POISONOUS_POTATO",
|
|
"LEGACY_EMPTY_MAP",
|
|
"LEGACY_GOLDEN_CARROT",
|
|
"LEGACY_SKULL_ITEM",
|
|
"LEGACY_CARROT_STICK",
|
|
"LEGACY_NETHER_STAR",
|
|
"LEGACY_PUMPKIN_PIE",
|
|
"LEGACY_FIREWORK",
|
|
"LEGACY_FIREWORK_CHARGE",
|
|
"LEGACY_ENCHANTED_BOOK",
|
|
"LEGACY_REDSTONE_COMPARATOR",
|
|
"LEGACY_NETHER_BRICK_ITEM",
|
|
"LEGACY_QUARTZ",
|
|
"LEGACY_EXPLOSIVE_MINECART",
|
|
"LEGACY_HOPPER_MINECART",
|
|
"LEGACY_PRISMARINE_SHARD",
|
|
"LEGACY_PRISMARINE_CRYSTALS",
|
|
"LEGACY_RABBIT",
|
|
"LEGACY_COOKED_RABBIT",
|
|
"LEGACY_RABBIT_STEW",
|
|
"LEGACY_RABBIT_FOOT",
|
|
"LEGACY_RABBIT_HIDE",
|
|
"LEGACY_ARMOR_STAND",
|
|
"LEGACY_IRON_BARDING",
|
|
"LEGACY_GOLD_BARDING",
|
|
"LEGACY_DIAMOND_BARDING",
|
|
"LEGACY_LEASH",
|
|
"LEGACY_NAME_TAG",
|
|
"LEGACY_COMMAND_MINECART",
|
|
"LEGACY_MUTTON",
|
|
"LEGACY_COOKED_MUTTON",
|
|
"LEGACY_BANNER",
|
|
"LEGACY_END_CRYSTAL",
|
|
"LEGACY_SPRUCE_DOOR_ITEM",
|
|
"LEGACY_BIRCH_DOOR_ITEM",
|
|
"LEGACY_JUNGLE_DOOR_ITEM",
|
|
"LEGACY_ACACIA_DOOR_ITEM",
|
|
"LEGACY_DARK_OAK_DOOR_ITEM",
|
|
"LEGACY_CHORUS_FRUIT",
|
|
"LEGACY_CHORUS_FRUIT_POPPED",
|
|
"LEGACY_BEETROOT",
|
|
"LEGACY_BEETROOT_SEEDS",
|
|
"LEGACY_BEETROOT_SOUP",
|
|
"LEGACY_DRAGONS_BREATH",
|
|
"LEGACY_SPLASH_POTION",
|
|
"LEGACY_SPECTRAL_ARROW",
|
|
"LEGACY_TIPPED_ARROW",
|
|
"LEGACY_LINGERING_POTION",
|
|
"LEGACY_SHIELD",
|
|
"LEGACY_ELYTRA",
|
|
"LEGACY_BOAT_SPRUCE",
|
|
"LEGACY_BOAT_BIRCH",
|
|
"LEGACY_BOAT_JUNGLE",
|
|
"LEGACY_BOAT_ACACIA",
|
|
"LEGACY_BOAT_DARK_OAK",
|
|
"LEGACY_TOTEM",
|
|
"LEGACY_SHULKER_SHELL",
|
|
"LEGACY_IRON_NUGGET",
|
|
"LEGACY_KNOWLEDGE_BOOK",
|
|
"LEGACY_GOLD_RECORD",
|
|
"LEGACY_GREEN_RECORD",
|
|
"LEGACY_RECORD_3",
|
|
"LEGACY_RECORD_4",
|
|
"LEGACY_RECORD_5",
|
|
"LEGACY_RECORD_6",
|
|
"LEGACY_RECORD_7",
|
|
"LEGACY_RECORD_8",
|
|
"LEGACY_RECORD_9",
|
|
"LEGACY_RECORD_10",
|
|
"LEGACY_RECORD_11",
|
|
"LEGACY_RECORD_12"
|
|
]},
|
|
"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"}
|
|
]},
|
|
"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"}
|
|
]},
|
|
"obj-byte": {
|
|
"description": "",
|
|
"type": "object",
|
|
"properties": {}
|
|
},
|
|
"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"
|
|
]},
|
|
"oneof-enum-com-volmit-iris-engine-object-studiomode": {"oneOf": [
|
|
{
|
|
"const": "NORMAL",
|
|
"description": "No Description for NORMAL"
|
|
},
|
|
{
|
|
"const": "BIOME_BUFFET_1x1",
|
|
"description": "No Description for BIOME_BUFFET_1x1"
|
|
},
|
|
{
|
|
"const": "BIOME_BUFFET_3x3",
|
|
"description": "No Description for BIOME_BUFFET_3x3"
|
|
},
|
|
{
|
|
"const": "BIOME_BUFFET_5x5",
|
|
"description": "No Description for BIOME_BUFFET_5x5"
|
|
},
|
|
{
|
|
"const": "BIOME_BUFFET_9x9",
|
|
"description": "No Description for BIOME_BUFFET_9x9"
|
|
},
|
|
{
|
|
"const": "BIOME_BUFFET_18x18",
|
|
"description": "No Description for BIOME_BUFFET_18x18"
|
|
},
|
|
{
|
|
"const": "BIOME_BUFFET_36x36",
|
|
"description": "No Description for BIOME_BUFFET_36x36"
|
|
},
|
|
{
|
|
"const": "REGION_BUFFET",
|
|
"description": "No Description for REGION_BUFFET"
|
|
},
|
|
{
|
|
"const": "OBJECT_BUFFET",
|
|
"description": "No Description for OBJECT_BUFFET"
|
|
}
|
|
]},
|
|
"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-org-bukkit-inventory-meta-itemmeta": {
|
|
"description": "",
|
|
"type": "object",
|
|
"properties": {}
|
|
},
|
|
"obj-com-volmit-iris-engine-object-irisvillagertrade": {"anyOf": [
|
|
{
|
|
"description": "Represents a villager trade.",
|
|
"type": "object",
|
|
"properties": {
|
|
"ingredient1": {
|
|
"type": "object",
|
|
"$ref": "#/definitions/obj-org-bukkit-inventory-itemstack",
|
|
"description": "ingredient1\nThe first, required, ingredient for the trade.\nNote: this MUST be an item, and may not be a non-obtainable block!\n \nItemStack (Object)\n"
|
|
},
|
|
"ingredient2": {
|
|
"type": "object",
|
|
"$ref": "#/definitions/obj-org-bukkit-inventory-itemstack",
|
|
"description": "ingredient2\nThe second, optional, ingredient for the trade.\nNote: this MUST be an item, and may not be a non-obtainable block!\n \nItemStack (Object)\n"
|
|
},
|
|
"result": {
|
|
"type": "object",
|
|
"$ref": "#/definitions/obj-org-bukkit-inventory-itemstack",
|
|
"description": "result\nThe result of the trade.\nNote: this MUST be an item, and may not be a non-obtainable block!\n \nItemStack (Object)\n"
|
|
},
|
|
"minTrades": {
|
|
"type": "integer",
|
|
"minimum": 1,
|
|
"maximum": 64,
|
|
"description": "minTrades\nThe min amount of times this trade can be done. Default 3\n \nInteger\n\n \n* Default Value is 3\n* Minimum allowed is 1\n* Maximum allowed is 64"
|
|
},
|
|
"maxTrades": {
|
|
"type": "integer",
|
|
"minimum": 1,
|
|
"maximum": 64,
|
|
"description": "maxTrades\nThe max amount of times this trade can be done. Default 5\n \nInteger\n\n \n* Default Value is 5\n* Minimum allowed is 1\n* Maximum allowed is 64"
|
|
}
|
|
}
|
|
},
|
|
{"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"
|
|
}
|
|
]},
|
|
"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)"
|
|
}
|
|
]},
|
|
"enum-org-bukkit-inventory-itemflag": {"enum": [
|
|
"HIDE_ENCHANTS",
|
|
"HIDE_ATTRIBUTES",
|
|
"HIDE_UNBREAKABLE",
|
|
"HIDE_DESTROYS",
|
|
"HIDE_PLACED_ON",
|
|
"HIDE_POTION_EFFECTS",
|
|
"HIDE_DYE"
|
|
]},
|
|
"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"}
|
|
]},
|
|
"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-org-bukkit-material-materialdata": {
|
|
"description": "",
|
|
"type": "object",
|
|
"properties": {"data": {
|
|
"type": "object",
|
|
"$ref": "#/definitions/obj-byte",
|
|
"description": "data\nBukkit package classes and enums have no descriptions\n \nbyte (Object)\n"
|
|
}}
|
|
},
|
|
"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"
|
|
]},
|
|
"oneof-enum-com-volmit-iris-engine-object-iristreemodes": {"oneOf": [
|
|
{
|
|
"const": "FIRST",
|
|
"description": "Check biome, then region, then dimension, pick the first one that has options"
|
|
},
|
|
{
|
|
"const": "ALL",
|
|
"description": "Check biome, regions, and dimensions, and pick any option from the total list"
|
|
}
|
|
]},
|
|
"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-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"}
|
|
]}
|
|
}
|
|
}
|