From 7e5585ccf2b87bf7a9ce94b7317ba1cb58e22357 Mon Sep 17 00:00:00 2001 From: Sowgro Date: Sat, 28 Oct 2023 21:17:17 -0400 Subject: Add files --- README.md | 4 ++++ data/minecraft/worldgen/biome/fall_orange.json | 23 +++++++++++++++++++++++ data/minecraft/worldgen/biome/fall_red.json | 23 +++++++++++++++++++++++ data/minecraft/worldgen/biome/fall_yellow.json | 23 +++++++++++++++++++++++ img1.png | Bin 0 -> 2450343 bytes img2.png | Bin 0 -> 3456436 bytes pack.mcmeta | 6 ++++++ 7 files changed, 79 insertions(+) create mode 100644 data/minecraft/worldgen/biome/fall_orange.json create mode 100644 data/minecraft/worldgen/biome/fall_red.json create mode 100644 data/minecraft/worldgen/biome/fall_yellow.json create mode 100644 img1.png create mode 100644 img2.png create mode 100644 pack.mcmeta diff --git a/README.md b/README.md index 9098a48..c16a854 100644 --- a/README.md +++ b/README.md @@ -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. + +![img1](img1.png) +![img2](img2.png) \ 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 new file mode 100644 index 0000000..538ef2d Binary files /dev/null and b/img1.png differ diff --git a/img2.png b/img2.png new file mode 100644 index 0000000..cc211e4 Binary files /dev/null and b/img2.png differ 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" + } +} -- cgit v1.2.3