aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md4
-rw-r--r--data/minecraft/worldgen/biome/fall_orange.json23
-rw-r--r--data/minecraft/worldgen/biome/fall_red.json23
-rw-r--r--data/minecraft/worldgen/biome/fall_yellow.json23
-rw-r--r--img1.pngbin0 -> 2450343 bytes
-rw-r--r--img2.pngbin0 -> 3456436 bytes
-rw-r--r--pack.mcmeta6
7 files changed, 79 insertions, 0 deletions
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
--- /dev/null
+++ b/img1.png
Binary files differ
diff --git a/img2.png b/img2.png
new file mode 100644
index 0000000..cc211e4
--- /dev/null
+++ b/img2.png
Binary files 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"
+ }
+}