From 5cd5f360679ccc211f7a2eb2604243f2d515da89 Mon Sep 17 00:00:00 2001 From: Carrie Date: Sat, 21 Mar 2026 12:49:58 -0600 Subject: [PATCH 1/6] hughlands --- .../cubyz/biomes/decorative/stone_pit.zig.zon | 4 + .../cubyz/biomes/highlands/_defaults.zig.zon | 3 + assets/cubyz/biomes/highlands/base.zig.zon | 103 ++++++++++++++++++ assets/cubyz/biomes/highlands/rock.zig.zon | 39 +++++++ 4 files changed, 149 insertions(+) create mode 100644 assets/cubyz/biomes/highlands/_defaults.zig.zon create mode 100644 assets/cubyz/biomes/highlands/base.zig.zon create mode 100644 assets/cubyz/biomes/highlands/rock.zig.zon diff --git a/assets/cubyz/biomes/decorative/stone_pit.zig.zon b/assets/cubyz/biomes/decorative/stone_pit.zig.zon index f676d84a31..5775f99008 100644 --- a/assets/cubyz/biomes/decorative/stone_pit.zig.zon +++ b/assets/cubyz/biomes/decorative/stone_pit.zig.zon @@ -64,5 +64,9 @@ .id = "cubyz:hills/cold", .chance = 2, }, + .{ + .id = "cubyz:highlands/base", + .chance = 2, + }, }, } diff --git a/assets/cubyz/biomes/highlands/_defaults.zig.zon b/assets/cubyz/biomes/highlands/_defaults.zig.zon new file mode 100644 index 0000000000..00844bb6fd --- /dev/null +++ b/assets/cubyz/biomes/highlands/_defaults.zig.zon @@ -0,0 +1,3 @@ +.{ + .soilCreep = 1.5, +} diff --git a/assets/cubyz/biomes/highlands/base.zig.zon b/assets/cubyz/biomes/highlands/base.zig.zon new file mode 100644 index 0000000000..e9cd05d1be --- /dev/null +++ b/assets/cubyz/biomes/highlands/base.zig.zon @@ -0,0 +1,103 @@ +.{ + .minHeightLimit = 50, + .minHeight = 80, + .maxHeight = 150, + .maxHeightLimit = 200, + .smoothBeaches = true, + .minRadius = 256, + .maxRadius = 320, + .roughness = 3, + .hills = 18, + .validPlayerSpawn = true, + .ground_structure = .{ + "cubyz:grass", + "cubyz:soil", + }, + .structures = .{ + .{ + .id = "cubyz:simple_tree", + .leaves = "cubyz:leaves/oak", + .log = "cubyz:oak_log", + .top = "cubyz:oak_top", + .chance = 0.01, + .type = .round, + .height = 1, + .height_variation = 1, + .leafRadius = 2, + .leafRadius_variation = 1, + }, + .{ + .id = "cubyz:simple_tree", + .leaves = "cubyz:leaves/oak", + .log = "cubyz:oak_log", + .top = "cubyz:oak_top", + .chance = 0.01, + .type = .round, + .height = 1, + .height_variation = 0, + .leafRadius = 1.5, + .leafRadius_variation = 0.5, + }, + .{ + .id = "cubyz:ground_patch", + .block = "cubyz:gravel", + .chance = 0.01, + .width = 8, + .variation = 3, + .depth = 2, + .smoothness = 0.1, + }, + .{ + .id = "cubyz:flower_patch", + .blocks = .{"cubyz:grass_vegetation"}, + .chance = 0.1, + .width = 5, + .variation = 8, + .density = 0.5, + .priority = 0.2, + }, + .{ + .id = "cubyz:flower_patch", + .blocks = .{"cubyz:fern"}, + .chance = 0.03, + .width = 4, + .variation = 7, + .density = 0.4, + .priority = 0.3, + }, + .{ + .id = "cubyz:boulder", + .chance = 0.04, + .block = "cubyz:slate/base", + .size = 3, + .size_variance = 3, + }, + .{ + .id = "cubyz:stalagmite", + .block = "cubyz:slate/base", + .chance = 0.005, + .size = 9, + .size_variation = 6, + .baseSlope = 5, + .topSlope = 1, + }, + .{ + .id = "cubyz:flower_patch", + .blocks = .{"cubyz:daffodil"}, + .chance = 0.007, + .width = 8, + .variation = 3, + .density = 0.1, + .priority = 0.1, + }, + .{ + .id = "cubyz:flower_patch", + .blocks = .{"cubyz:vetch"}, + .chance = 0.01, + .width = 5, + .variation = 3, + .density = 0.4, + .priority = 0.1, + }, + }, +} diff --git a/assets/cubyz/biomes/highlands/rock.zig.zon b/assets/cubyz/biomes/highlands/rock.zig.zon new file mode 100644 index 0000000000..e5245a5ec6 --- /dev/null +++ b/assets/cubyz/biomes/highlands/rock.zig.zon @@ -0,0 +1,39 @@ +.{ + .properties = .{}, + .minRadius = 16, + .maxRadius = 32, + .chance = 0, + .minHeight = 1500, + .maxHeight = 3000, + .keepOriginalTerrain = 0.99, + .roughness = 0, + .mountains = 60, + .hills = 20, + .stoneBlock = "cubyz:slate/base", + .parentBiomes = .{ + .{ + .id = "cubyz:highlands/base", + .chance = 6, + }, + }, + .structures = .{ + .{ + .id = "cubyz:stalagmite", + .block = "cubyz:slate/base", + .chance = 0.2, + .size = 9, + .size_variation = 6, + .baseSlope = 5, + .topSlope = 1, + }, + .{ + .id = "cubyz:stalagmite", + .block = "cubyz:slate/base", + .chance = 0.05, + .size = 12, + .size_variation = 6, + .baseSlope = 5, + .topSlope = 1, + }, + }, +} From 3aa0f4e63c966b5623f59311fc8a5e472b9df53d Mon Sep 17 00:00:00 2001 From: Carrie Date: Sun, 22 Mar 2026 12:53:35 -0600 Subject: [PATCH 2/6] highlandsds ds --- assets/cubyz/biomes/highlands/base.zig.zon | 4 ++-- assets/cubyz/biomes/highlands/rock.zig.zon | 15 +++++++-------- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/assets/cubyz/biomes/highlands/base.zig.zon b/assets/cubyz/biomes/highlands/base.zig.zon index e9cd05d1be..b287715c80 100644 --- a/assets/cubyz/biomes/highlands/base.zig.zon +++ b/assets/cubyz/biomes/highlands/base.zig.zon @@ -67,7 +67,7 @@ }, .{ .id = "cubyz:boulder", - .chance = 0.04, + .chance = 0.03, .block = "cubyz:slate/base", .size = 3, .size_variance = 3, @@ -75,7 +75,7 @@ .{ .id = "cubyz:stalagmite", .block = "cubyz:slate/base", - .chance = 0.005, + .chance = 0.003, .size = 9, .size_variation = 6, .baseSlope = 5, diff --git a/assets/cubyz/biomes/highlands/rock.zig.zon b/assets/cubyz/biomes/highlands/rock.zig.zon index e5245a5ec6..faf7f2eb5d 100644 --- a/assets/cubyz/biomes/highlands/rock.zig.zon +++ b/assets/cubyz/biomes/highlands/rock.zig.zon @@ -1,14 +1,13 @@ .{ .properties = .{}, .minRadius = 16, - .maxRadius = 32, + .maxRadius = 48, .chance = 0, - .minHeight = 1500, - .maxHeight = 3000, - .keepOriginalTerrain = 0.99, + .minHeight = 150, + .maxHeight = 155, .roughness = 0, - .mountains = 60, - .hills = 20, + .mountains = 50, + .hills = 2, .stoneBlock = "cubyz:slate/base", .parentBiomes = .{ .{ @@ -20,7 +19,7 @@ .{ .id = "cubyz:stalagmite", .block = "cubyz:slate/base", - .chance = 0.2, + .chance = 0.08, .size = 9, .size_variation = 6, .baseSlope = 5, @@ -29,7 +28,7 @@ .{ .id = "cubyz:stalagmite", .block = "cubyz:slate/base", - .chance = 0.05, + .chance = 0.01, .size = 12, .size_variation = 6, .baseSlope = 5, From a6ad8c4386949237106c0d1475af4a4860f2af53 Mon Sep 17 00:00:00 2001 From: Carrie Date: Thu, 23 Apr 2026 21:03:00 -0600 Subject: [PATCH 3/6] thicket subbiome --- .../cubyz/biomes/decorative/stone_pit.zig.zon | 2 +- assets/cubyz/biomes/highlands/base.zig.zon | 18 +++ assets/cubyz/biomes/highlands/thicket.zig.zon | 108 ++++++++++++++++++ 3 files changed, 127 insertions(+), 1 deletion(-) create mode 100644 assets/cubyz/biomes/highlands/thicket.zig.zon diff --git a/assets/cubyz/biomes/decorative/stone_pit.zig.zon b/assets/cubyz/biomes/decorative/stone_pit.zig.zon index 5775f99008..1e67f2d589 100644 --- a/assets/cubyz/biomes/decorative/stone_pit.zig.zon +++ b/assets/cubyz/biomes/decorative/stone_pit.zig.zon @@ -66,7 +66,7 @@ }, .{ .id = "cubyz:highlands/base", - .chance = 2, + .chance = 3, }, }, } diff --git a/assets/cubyz/biomes/highlands/base.zig.zon b/assets/cubyz/biomes/highlands/base.zig.zon index b287715c80..c4a0bcb11f 100644 --- a/assets/cubyz/biomes/highlands/base.zig.zon +++ b/assets/cubyz/biomes/highlands/base.zig.zon @@ -14,6 +14,24 @@ "cubyz:soil", }, .structures = .{ + .{ + .id = "cubyz:sbb", + .structure = "cubyz:tree/oak/white", + .placeMode = .degradable, + .chance = 0.001, + }, + .{ + .id = "cubyz:sbb", + .structure = "cubyz:tree/coniferous/pine/loblolly", + .placeMode = .degradable, + .chance = 0.0005, + }, + .{ + .id = "cubyz:sbb", + .structure = "cubyz:tree/coniferous/pine/eastern_white", + .placeMode = .degradable, + .chance = 0.0005, + }, .{ .id = "cubyz:simple_tree", .leaves = "cubyz:leaves/oak", diff --git a/assets/cubyz/biomes/highlands/thicket.zig.zon b/assets/cubyz/biomes/highlands/thicket.zig.zon new file mode 100644 index 0000000000..6e0600b541 --- /dev/null +++ b/assets/cubyz/biomes/highlands/thicket.zig.zon @@ -0,0 +1,108 @@ +.{ + .keepOriginalTerrain = 1, + .chance = 0, + .minHeightLimit = 50, + .minHeight = 80, + .maxHeight = 150, + .maxHeightLimit = 200, + .smoothBeaches = true, + .minRadius = 24, + .maxRadius = 48, + .roughness = 3, + .hills = 18, + .validPlayerSpawn = true, + .ground_structure = .{ + "cubyz:grass", + "cubyz:soil", + }, + .structures = .{ + .{ + .id = "cubyz:sbb", + .structure = "cubyz:tree/oak/white", + .placeMode = .degradable, + .chance = 0.025, + }, + .{ + .id = "cubyz:sbb", + .structure = "cubyz:tree/oak/young", + .placeMode = .degradable, + .chance = 0.04, + }, + .{ + .id = "cubyz:sbb", + .structure = "cubyz:tree/coniferous/pine/loblolly", + .placeMode = .degradable, + .chance = 0.025, + }, + .{ + .id = "cubyz:sbb", + .structure = "cubyz:tree/coniferous/pine/eastern_white", + .placeMode = .degradable, + .chance = 0.025, + }, + .{ + .id = "cubyz:sbb", + .structure = "cubyz:tree/coniferous/pine/young_tree", + .placeMode = .degradable, + .chance = 0.03, + }, + .{ + .id = "cubyz:ground_patch", + .block = "cubyz:soil", + .chance = 0.03, + .width = 8, + .variation = 3, + .depth = 2, + .smoothness = 0.2, + }, + .{ + .id = "cubyz:flower_patch", + .blocks = .{"cubyz:grass_vegetation"}, + .chance = 0.1, + .width = 5, + .variation = 8, + .density = 0.5, + .priority = 0.2, + }, + .{ + .id = "cubyz:flower_patch", + .blocks = .{"cubyz:fern"}, + .chance = 0.03, + .width = 4, + .variation = 7, + .density = 0.4, + .priority = 0.3, + }, + .{ + .id = "cubyz:boulder", + .chance = 0.03, + .block = "cubyz:slate/base", + .size = 3, + .size_variance = 3, + }, + .{ + .id = "cubyz:flower_patch", + .blocks = .{"cubyz:daffodil"}, + .chance = 0.007, + .width = 8, + .variation = 3, + .density = 0.1, + .priority = 0.1, + }, + .{ + .id = "cubyz:flower_patch", + .blocks = .{"cubyz:vetch"}, + .chance = 0.01, + .width = 5, + .variation = 3, + .density = 0.4, + .priority = 0.1, + }, + }, + .parentBiomes = .{ + .{ + .id = "cubyz:highlands/base", + .chance = 3, + }, + }, +} From caf92aa94a57d962f56742f20c0907e4dcb0288a Mon Sep 17 00:00:00 2001 From: Carrie Date: Fri, 24 Apr 2026 13:10:08 -0600 Subject: [PATCH 4/6] rock circles --- assets/cubyz/biomes/highlands/base.zig.zon | 6 ++++++ assets/cubyz/sbb/ruins/slate/circle.zig.zon | 10 ++++++++++ assets/cubyz/sbb/ruins/slate/circle/base/0.blp | Bin 0 -> 116 bytes assets/cubyz/sbb/ruins/slate/circle/base/1.blp | Bin 0 -> 125 bytes assets/cubyz/sbb/ruins/slate/circle/rock.zig.zon | 6 ++++++ assets/cubyz/sbb/ruins/slate/circle/rock/0.blp | Bin 0 -> 97 bytes assets/cubyz/sbb/ruins/slate/circle/rock/1.blp | Bin 0 -> 98 bytes .../cubyz/sbb/ruins/slate/circle/treasure.zig.zon | 7 +++++++ .../sbb/ruins/slate/circle/treasure/coal.blp | Bin 0 -> 166 bytes .../sbb/ruins/slate/circle/treasure/copper.blp | Bin 0 -> 154 bytes .../sbb/ruins/slate/circle/treasure/meteorite.blp | Bin 0 -> 164 bytes .../sbb/ruins/slate/circle/treasure/spacer.blp | Bin 0 -> 72 bytes .../ruins/slate/circle/treasure_spacer.zig.zon | 8 ++++++++ 13 files changed, 37 insertions(+) create mode 100644 assets/cubyz/sbb/ruins/slate/circle.zig.zon create mode 100644 assets/cubyz/sbb/ruins/slate/circle/base/0.blp create mode 100644 assets/cubyz/sbb/ruins/slate/circle/base/1.blp create mode 100644 assets/cubyz/sbb/ruins/slate/circle/rock.zig.zon create mode 100644 assets/cubyz/sbb/ruins/slate/circle/rock/0.blp create mode 100644 assets/cubyz/sbb/ruins/slate/circle/rock/1.blp create mode 100644 assets/cubyz/sbb/ruins/slate/circle/treasure.zig.zon create mode 100644 assets/cubyz/sbb/ruins/slate/circle/treasure/coal.blp create mode 100644 assets/cubyz/sbb/ruins/slate/circle/treasure/copper.blp create mode 100644 assets/cubyz/sbb/ruins/slate/circle/treasure/meteorite.blp create mode 100644 assets/cubyz/sbb/ruins/slate/circle/treasure/spacer.blp create mode 100644 assets/cubyz/sbb/ruins/slate/circle/treasure_spacer.zig.zon diff --git a/assets/cubyz/biomes/highlands/base.zig.zon b/assets/cubyz/biomes/highlands/base.zig.zon index c4a0bcb11f..f32e7d051a 100644 --- a/assets/cubyz/biomes/highlands/base.zig.zon +++ b/assets/cubyz/biomes/highlands/base.zig.zon @@ -117,5 +117,11 @@ .density = 0.4, .priority = 0.1, }, + .{ + .id = "cubyz:sbb", + .structure = "cubyz:ruins/slate/circle", + .placeMode = .all, + .chance = 0.0003, + }, }, } diff --git a/assets/cubyz/sbb/ruins/slate/circle.zig.zon b/assets/cubyz/sbb/ruins/slate/circle.zig.zon new file mode 100644 index 0000000000..7cec2c7861 --- /dev/null +++ b/assets/cubyz/sbb/ruins/slate/circle.zig.zon @@ -0,0 +1,10 @@ +.{ + .blueprints = .{ + .{.id = "cubyz:ruins/slate/circle/base/0"}, + .{.id = "cubyz:ruins/slate/circle/base/1"}, + }, + .children = .{ + .grey = "cubyz:ruins/slate/circle/rock", + .lime = "cubyz:ruins/slate/circle/treasure_spacer", + }, +} diff --git a/assets/cubyz/sbb/ruins/slate/circle/base/0.blp b/assets/cubyz/sbb/ruins/slate/circle/base/0.blp new file mode 100644 index 0000000000000000000000000000000000000000..603a534c3219388a8cbe3a82c6866ae753ac8631 GIT binary patch literal 116 zcmZQzWB`E>AZB3@1VX0dgoFoPdcLdHY|=V?-iPs%i^85qOH}?o={Yk;mzK9`s$zf}gW}})DKqEIJnkTSz+=uPMedBZ`ya~HEl#Ll_PV4mEMP3WTtr>s Tto`ByjpmELT8$hw{$~IHjx;WH literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/ruins/slate/circle/base/1.blp b/assets/cubyz/sbb/ruins/slate/circle/base/1.blp new file mode 100644 index 0000000000000000000000000000000000000000..601f4a663825fe61f470cebd203bdb0673849aed GIT binary patch literal 125 zcmZQzWB`E>AZB3@1wy9egoFoPdcLdHY|=V?-iPs%i^85qOH}?o={Yk;mzK9`s$zf}gW}})DKqEIJnkTUz+=v)Km!lPy^r%v_VzRd8gL~v%zDZwEMP3W Yd`gBvR9r7uEMd!D6D|+NkbZjx04nY;kpKVy literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/ruins/slate/circle/rock.zig.zon b/assets/cubyz/sbb/ruins/slate/circle/rock.zig.zon new file mode 100644 index 0000000000..1d485dc07c --- /dev/null +++ b/assets/cubyz/sbb/ruins/slate/circle/rock.zig.zon @@ -0,0 +1,6 @@ +.{ + .blueprints = .{ + .{.id = "cubyz:ruins/slate/circle/rock/0"}, + .{.id = "cubyz:ruins/slate/circle/rock/1"}, + }, +} diff --git a/assets/cubyz/sbb/ruins/slate/circle/rock/0.blp b/assets/cubyz/sbb/ruins/slate/circle/rock/0.blp new file mode 100644 index 0000000000000000000000000000000000000000..9bb284af257b280f5254457a392c18937420094a GIT binary patch literal 97 zcmZQzWB>s(AZ7+bq2z>w2VQ!~97vU0nwQAH003#TCjI~b literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/ruins/slate/circle/rock/1.blp b/assets/cubyz/sbb/ruins/slate/circle/rock/1.blp new file mode 100644 index 0000000000000000000000000000000000000000..a9a18e32abcc459730066e95d9da6fe0e1317202 GIT binary patch literal 98 zcmZQzWB>s(AZ7+b;pBvb2VQ!w3lPc=HREGs;(s7S!D4xSKR1`P|<-yM?z)OblPZxo5@3{(LvT QLyM(GzHhBO0NUV6cK`qY literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/ruins/slate/circle/treasure/copper.blp b/assets/cubyz/sbb/ruins/slate/circle/treasure/copper.blp new file mode 100644 index 0000000000000000000000000000000000000000..d1f6d5f1ed1b58dab5ed47ff950f5ba835ca577b GIT binary patch literal 154 zcmZQzWB`F!AZB4;1;ONmga=-FzN^-3(mH+Khw&4O!k$NSj!X*qyX45DkOec8Ty!k= zFHqR3VYgr7Dp$9X;);l%Np*FBX;o?SrYbV$9pE_P6LCc1;*l8}Iue;*R3-kJ@YQ%x zr}FD$C!u7A%kADgH+9rZ3?ODa~~-B$YesQ9~P`JJ0;lf(7q6zSM3IpcRSSL(Cj^)z#Krx&YB z`pnA>PN%+h=h}S0BQa{>@4EE|md`wSH!S7C@!ucBgnZ6THoiW=QT{*g_pEhyvJWn1 P{U83f_;h>i-0w^Pki$;e literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/ruins/slate/circle/treasure/spacer.blp b/assets/cubyz/sbb/ruins/slate/circle/treasure/spacer.blp new file mode 100644 index 0000000000000000000000000000000000000000..24fa1afd5fabf7e78a299b9bb78b1aa6c441e04a GIT binary patch literal 72 zcmZQzWB>s>AZBJ@1VYy2gaiR^J>OMpHfi~JUGhJ7;*96T^C!>vZZ%>#Rp6L%>XUJB YgN Date: Fri, 24 Apr 2026 13:13:17 -0600 Subject: [PATCH 5/6] silver --- assets/cubyz/biomes/highlands/base.zig.zon | 2 +- .../cubyz/sbb/ruins/slate/circle/treasure.zig.zon | 1 + .../sbb/ruins/slate/circle/treasure/silver.blp | Bin 0 -> 152 bytes 3 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 assets/cubyz/sbb/ruins/slate/circle/treasure/silver.blp diff --git a/assets/cubyz/biomes/highlands/base.zig.zon b/assets/cubyz/biomes/highlands/base.zig.zon index f32e7d051a..ca5a94770f 100644 --- a/assets/cubyz/biomes/highlands/base.zig.zon +++ b/assets/cubyz/biomes/highlands/base.zig.zon @@ -121,7 +121,7 @@ .id = "cubyz:sbb", .structure = "cubyz:ruins/slate/circle", .placeMode = .all, - .chance = 0.0003, + .chance = 0.0001, }, }, } diff --git a/assets/cubyz/sbb/ruins/slate/circle/treasure.zig.zon b/assets/cubyz/sbb/ruins/slate/circle/treasure.zig.zon index f0a61cb12d..9bc06df871 100644 --- a/assets/cubyz/sbb/ruins/slate/circle/treasure.zig.zon +++ b/assets/cubyz/sbb/ruins/slate/circle/treasure.zig.zon @@ -2,6 +2,7 @@ .blueprints = .{ .{.id = "cubyz:ruins/slate/circle/treasure/coal"}, .{.id = "cubyz:ruins/slate/circle/treasure/copper"}, + .{.id = "cubyz:ruins/slate/circle/treasure/silver"}, .{.id = "cubyz:ruins/slate/circle/treasure/meteorite", .chance = 0.5}, }, } diff --git a/assets/cubyz/sbb/ruins/slate/circle/treasure/silver.blp b/assets/cubyz/sbb/ruins/slate/circle/treasure/silver.blp new file mode 100644 index 0000000000000000000000000000000000000000..75fe30cfdf7ff8ccc9a102ded31c85562ea36934 GIT binary patch literal 152 zcmZQzWB`F!AZB4;1;N@0zFaK^Jgt|{<%K=sea7-=+jPOzsTv)vznH74xWhF1k2r|` zJn`Mb+2wxX=Hr>)9vr{&_g&t{%kPrJ7a2?X{Cy>LTVIbilxMZ^=53r8|NqU2n&iE7 zd1GdyW*P;%JCDb5*l5+fl$YA0zWs~A Date: Fri, 24 Apr 2026 13:22:39 -0600 Subject: [PATCH 6/6] tags --- assets/cubyz/biomes/highlands/base.zig.zon | 4 ++++ assets/cubyz/biomes/highlands/thicket.zig.zon | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/assets/cubyz/biomes/highlands/base.zig.zon b/assets/cubyz/biomes/highlands/base.zig.zon index ca5a94770f..8735e0f961 100644 --- a/assets/cubyz/biomes/highlands/base.zig.zon +++ b/assets/cubyz/biomes/highlands/base.zig.zon @@ -1,4 +1,8 @@ .{ + .tags = .{ + .pine, + .oak, + }, .minHeightLimit = 50, .minHeight = 80, .maxHeight = 150, diff --git a/assets/cubyz/biomes/highlands/thicket.zig.zon b/assets/cubyz/biomes/highlands/thicket.zig.zon index 6e0600b541..290045c86e 100644 --- a/assets/cubyz/biomes/highlands/thicket.zig.zon +++ b/assets/cubyz/biomes/highlands/thicket.zig.zon @@ -1,4 +1,8 @@ .{ + .tags = .{ + .pine, + .oak, + }, .keepOriginalTerrain = 1, .chance = 0, .minHeightLimit = 50,