diff options
author | Sowgro <tpoke.ferrari@gmail.com> | 2023-10-28 21:17:17 -0400 |
---|---|---|
committer | Sowgro <tpoke.ferrari@gmail.com> | 2023-10-28 21:17:17 -0400 |
commit | 7e5585ccf2b87bf7a9ce94b7317ba1cb58e22357 (patch) | |
tree | f565aa99a80a12465e80bdb98b6d0ef7f912212b | |
parent | e97c726c0aeb921357956207e314bb57a65dd363 (diff) | |
download | autumnBiome-main.tar.gz autumnBiome-main.tar.bz2 autumnBiome-main.zip |
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | data/minecraft/worldgen/biome/fall_orange.json | 23 | ||||
-rw-r--r-- | data/minecraft/worldgen/biome/fall_red.json | 23 | ||||
-rw-r--r-- | data/minecraft/worldgen/biome/fall_yellow.json | 23 | ||||
-rw-r--r-- | img1.png | bin | 0 -> 2450343 bytes | |||
-rw-r--r-- | img2.png | bin | 0 -> 3456436 bytes | |||
-rw-r--r-- | pack.mcmeta | 6 |
7 files changed, 79 insertions, 0 deletions
@@ -2,6 +2,10 @@ A Minecraft datapack which adds three autumn biomes, each with different leaf colors. The biomes also contain particle effects and modified water, grass and sky colors to match the fall look. Using a datapack allows clients of a server or multiplayer world to see the leaf colors, without the need for client side mods or texture packs. +Due to limitations of datapacks this only changes the color of oak, dark oak, jungle, acacia and mangrove leaves. These biomes can be applied via worldEdit with the `//setbiome` command. The worldEdit Spigot plugin does not support custom biomes, you will need to use the worldEdit client-side mod. + + +
\ No newline at end of file diff --git a/data/minecraft/worldgen/biome/fall_orange.json b/data/minecraft/worldgen/biome/fall_orange.json new file mode 100644 index 0000000..1c9c44e --- /dev/null +++ b/data/minecraft/worldgen/biome/fall_orange.json @@ -0,0 +1,23 @@ +{ + "temperature": 0.8, + "downfall": 0.4, + "has_precipitation": true, + "effects": { + "sky_color": 11521021, + "fog_color": 12638463, + "water_color": 5337779, + "water_fog_color": 329011, + "grass_color": 9470285, + "foliage_color": 16746496, + "particle": { + "options": { + "type": "falling_spore_blossom" + }, + "probability": 0.001 + } + }, + "spawners": {}, + "spawn_costs": {}, + "carvers": {}, + "features": [] +} diff --git a/data/minecraft/worldgen/biome/fall_red.json b/data/minecraft/worldgen/biome/fall_red.json new file mode 100644 index 0000000..1945850 --- /dev/null +++ b/data/minecraft/worldgen/biome/fall_red.json @@ -0,0 +1,23 @@ +{ + "temperature": 0.8, + "downfall": 0.4, + "has_precipitation": true, + "effects": { + "sky_color": 11521021, + "fog_color": 12638463, + "water_color": 5337779, + "water_fog_color": 329011, + "grass_color": 9470285, + "foliage_color": 16071936, + "particle": { + "options": { + "type": "falling_spore_blossom" + }, + "probability": 0.001 + } + }, + "spawners": {}, + "spawn_costs": {}, + "carvers": {}, + "features": [] +} diff --git a/data/minecraft/worldgen/biome/fall_yellow.json b/data/minecraft/worldgen/biome/fall_yellow.json new file mode 100644 index 0000000..0306d35 --- /dev/null +++ b/data/minecraft/worldgen/biome/fall_yellow.json @@ -0,0 +1,23 @@ +{ + "temperature": 0.8, + "downfall": 0.4, + "has_precipitation": true, + "effects": { + "sky_color": 11521021, + "fog_color": 12638463, + "water_color": 5337779, + "water_fog_color": 329011, + "grass_color": 9470285, + "foliage_color": 16762880, + "particle": { + "options": { + "type": "falling_spore_blossom" + }, + "probability": 0.001 + } + }, + "spawners": {}, + "spawn_costs": {}, + "carvers": {}, + "features": [] +} diff --git a/img1.png b/img1.png Binary files differnew file mode 100644 index 0000000..538ef2d --- /dev/null +++ b/img1.png diff --git a/img2.png b/img2.png Binary files differnew file mode 100644 index 0000000..cc211e4 --- /dev/null +++ b/img2.png diff --git a/pack.mcmeta b/pack.mcmeta new file mode 100644 index 0000000..caaeeea --- /dev/null +++ b/pack.mcmeta @@ -0,0 +1,6 @@ +{
+ "pack":{
+ "pack_format":15,
+ "description":"autumnBiome"
+ }
+}
|