BiomeVisuals icon

BiomeVisuals -----

A plugin that allows server owners to override sent biome to clients.



ONLY SUPPORTS 1.19.3

There are no dependencies needed for this plugin.
Please go to Owen1212055/BiomeVisuals for the advanced documentation.
Need help? See: discord
[​IMG]

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:
Code (Text):

{
  "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
Code (Text):
"condition": {
        "type": "biomevisuals:static",
        "value": true
}
Value will always return as defined in the value field, in this case ``true``.
Code (Text):
"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
Code (Text):
{
  "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
      }
    }
  ]
}
Resource Information
Author:
----------
Total Downloads: 312
First Release: Dec 23, 2021
Last Update: Mar 4, 2023
Category: ---------------
All-Time Rating:
2 ratings
Find more info at github.com...
Version -----
Released: --------------------
Downloads: ------
Version Rating:
----------------------
-- ratings