Compatibility
Minecraft: Java Edition
Platforms
75% of ad revenue goes to creators
Support creators and Modrinth ad-free with Modrinth+Creators
Details
ONLY SUPPORTS 1.19
There are no dependencies needed for this plugin. Please go to Owen1212055/BiomeVisuals for the advanced documentation. Need help? See: discord
File Importing The plugin will automatically try to import overrides that are defined in the overrides directory located in the plugin directory. (BiomeVisuals/overrides) In order to add an override, you must first define the registry type that you are overriding. This is in case if any new overrides are added in the future.
Currently, the supported override types are: worldgen/biome.
Then, you will add the JSON object for an override, which is:
{
"key": "minecraft:plains",
"override": {},
"condition": {
"type": "",
}
}
The key represents the key of the item being overwritten. This usually represents the namespace of something, in this case, a biome. The override field represents all fields that will be replaced in the original object. See https://minecraft.fandom.com/wiki/Biome/JSON_format for fields that can be replaced. For converting colors, I recommend using http://www.shodor.org/stella2java/rgbint.html. The condition field represents a predicate, there is a chance that this may change in the future but my goal was to be able to assign "holidays" for example.
Current valid conditions
"condition": {
"type": "biomevisuals:static",
"value": true
}
Value will always return as defined in the value field, in this case true
.
"condition": {
"type": "biomevisuals:date_range",
"min_date": "2021-12-20",
"max_date": "2021-12-31",
"ignore_year": true
}
Value will return true if the current date is within the range of the two given dates. Ignore year causes the year in the min/max date field to be ignored, useful for re-occuring dates.
JSON Example
{
"minecraft:worldgen/biome": [
{
"key": "minecraft:plains",
"override": {
"effects": {
"sky_color": 1
}
},
"condition": {
"type": "biomevisuals:static",
"value": true
}
},
{
"key": "minecraft:forest",
"override": {
"effects": {
"sky_color": 15138811,
"foliage_color": 13434879,
"grass_color": 13434879,
"particle": {
"options": {
"type": "minecraft:snowflake"
},
"probability": 0.01428
}
}
},
"condition": {
"type": "biomevisuals:date_range",
"min_date": "2021-12-20",
"max_date": "2021-12-31",
"ignore_year": true
}
}
]
}