From cf0fe9afa826d43df1a89d83c2a27abac570ed4a Mon Sep 17 00:00:00 2001 From: Carrie Date: Mon, 3 Aug 2026 13:46:11 -0600 Subject: [PATCH 1/7] arid ass (laugh) --- assets/cubyz/blocks/grass/arid.zig.zon | 7 +++++++ assets/cubyz/blocks/textures/grass/arid.png | Bin 0 -> 438 bytes 2 files changed, 7 insertions(+) create mode 100644 assets/cubyz/blocks/grass/arid.zig.zon create mode 100644 assets/cubyz/blocks/textures/grass/arid.png diff --git a/assets/cubyz/blocks/grass/arid.zig.zon b/assets/cubyz/blocks/grass/arid.zig.zon new file mode 100644 index 0000000000..04a2b46341 --- /dev/null +++ b/assets/cubyz/blocks/grass/arid.zig.zon @@ -0,0 +1,7 @@ +.{ + .drops = .{ + .{.items = .{"cubyz:sand"}}, + }, + .texture = "cubyz:grass/arid", + .texture_bottom = "cubyz:sand", +} diff --git a/assets/cubyz/blocks/textures/grass/arid.png b/assets/cubyz/blocks/textures/grass/arid.png new file mode 100644 index 0000000000000000000000000000000000000000..0dc64cbd3b2b1078d71acd2f4bb2eef6e92e0504 GIT binary patch literal 438 zcmV;n0ZIOeP)Px$a7jc#R5*=oQ_YIPFcAK>^pMa%AT2102leC&?VIhB?8A7{9;Bj>1_CMR%{_Ey zoUofqL+0oEnd!&(*XIiWtZ6{US&e@17*j@TG^}a(&6)~fxIY8OYXAr_0{~*0008@K2cMRc({YE&SH*8l(j07*qoM6N<$f<58IXaE2J literal 0 HcmV?d00001 From 2aa6da896d40f754dcd4394b7406d7ba8bef6f74 Mon Sep 17 00:00:00 2001 From: Carrie Date: Tue, 4 Aug 2026 11:54:50 -0600 Subject: [PATCH 2/7] savannah fields --- .../biomes/savannah/fields/_defaults.zig.zon | 4 + .../cubyz/biomes/savannah/fields/base.zig.zon | 91 ++++++++++++++++++ .../blocks/grass/vegetation/arid.zig.zon | 6 ++ .../blocks/textures/grass/vegetation/arid.png | Bin 0 -> 303 bytes .../textures/grass/vegetation/arid.zig.zon | 3 + 5 files changed, 104 insertions(+) create mode 100644 assets/cubyz/biomes/savannah/fields/_defaults.zig.zon create mode 100644 assets/cubyz/biomes/savannah/fields/base.zig.zon create mode 100644 assets/cubyz/blocks/grass/vegetation/arid.zig.zon create mode 100644 assets/cubyz/blocks/textures/grass/vegetation/arid.png create mode 100644 assets/cubyz/blocks/textures/grass/vegetation/arid.zig.zon diff --git a/assets/cubyz/biomes/savannah/fields/_defaults.zig.zon b/assets/cubyz/biomes/savannah/fields/_defaults.zig.zon new file mode 100644 index 0000000000..b91f52d37a --- /dev/null +++ b/assets/cubyz/biomes/savannah/fields/_defaults.zig.zon @@ -0,0 +1,4 @@ +.{ + .fogDensity = 1.5, + .fogColor = 0xe9f2e2, +} diff --git a/assets/cubyz/biomes/savannah/fields/base.zig.zon b/assets/cubyz/biomes/savannah/fields/base.zig.zon new file mode 100644 index 0000000000..c02386ec30 --- /dev/null +++ b/assets/cubyz/biomes/savannah/fields/base.zig.zon @@ -0,0 +1,91 @@ +.{ + .properties = .{ + .hot, + .dry, + }, + .tags = .{ + .baobab, + .cactus, + }, + .minHeightLimit = 7, + .minHeight = 30, + .maxHeight = 64, + .maxHeightLimit = 42, + .smoothBeaches = true, + .minRadius = 256, + .maxRadius = 320, + .hills = 8, + .validPlayerSpawn = true, + .music = "cubyz:mischol/desert_firefly", + .ground_structure = .{ + "cubyz:grass/dry", + "1 to 2 cubyz:dirt", + }, + .structures = .{ + .{ + .id = "cubyz:ground_patch", + .block = "cubyz:dirt", + .chance = 0.07, + .width = 5, + .variation = 4, + .depth = 2, + .smoothness = 0.4, + }, + .{ + .id = "cubyz:ground_patch", + .block = "cubyz:grass/arid", + .chance = 0.1, + .width = 6, + .variation = 4, + .depth = 1, + .smoothness = 0.4, + }, + .{ + .id = "cubyz:sbb", + .structure = "cubyz:tree/baobab/young", + .placeMode = .degradable, + .chance = 0.02, + }, + .{ + .id = "cubyz:sbb", + .structure = "cubyz:tree/baobab/grandidieri", + .placeMode = .degradable, + .chance = 0.005, + }, + .{ + .id = "cubyz:flower_patch", + .blocks = .{"cubyz:grass/vegetation/dry"}, + .chance = 0.2, + .width = 5, + .variation = 8, + .density = 0.4, + .priority = 0.1, + }, + .{ + .id = "cubyz:flower_patch", + .blocks = .{"cubyz:grass/vegetation/arid"}, + .chance = 0.2, + .width = 5, + .variation = 8, + .density = 0.4, + .priority = 0.1, + }, + .{ + .id = "cubyz:flower_patch", + .blocks = .{"cubyz:tussock"}, + .chance = 0.03, + .width = 4, + .variation = 2, + .density = 0.2, + .priority = 0.1, + }, + .{ + .id = "cubyz:simple_vegetation", + .block = "cubyz:cactus", + .chance = 0.02, + .height = 1, + .height_variation = 3, + }, + }, + .stoneBlock = "cubyz:sandstone/rough", +} diff --git a/assets/cubyz/blocks/grass/vegetation/arid.zig.zon b/assets/cubyz/blocks/grass/vegetation/arid.zig.zon new file mode 100644 index 0000000000..44ade85edf --- /dev/null +++ b/assets/cubyz/blocks/grass/vegetation/arid.zig.zon @@ -0,0 +1,6 @@ +.{ + .texture = "cubyz:grass/vegetation/arid", + .item = .{ + .texture = "grass_vegetation/dry.png", + }, +} diff --git a/assets/cubyz/blocks/textures/grass/vegetation/arid.png b/assets/cubyz/blocks/textures/grass/vegetation/arid.png new file mode 100644 index 0000000000000000000000000000000000000000..496a9babf3caa6e4fc520dcf4e068fd10d1ac292 GIT binary patch literal 303 zcmV+~0nq-5P)Px#=}AOER5*?8kueIwFc^hjvPoMC+O321B3+zaU5jfk;2C-V=jsg#&MrMeXGKsD zsfCc1jB)yFY^%5mzA3!_f8Qes@Yj#1$YT9&#=i+TjspP5x62-A5b!C`h4Z1|be6Ew ze)Y1LZ zdZA5F7^TegiY(Tr^X&;Rn@Qae!N{Wwr Date: Tue, 4 Aug 2026 17:30:02 -0600 Subject: [PATCH 3/7] item + subbiomes --- .../biomes/savannah/fields/_defaults.zig.zon | 48 +++++++++++ .../cubyz/biomes/savannah/fields/arid.zig.zon | 48 +++++++++++ .../cubyz/biomes/savannah/fields/base.zig.zon | 76 ++++-------------- .../biomes/savannah/fields/bushy.zig.zon | 46 +++++++++++ .../blocks/grass/vegetation/arid.zig.zon | 2 +- assets/cubyz/blocks/textures/tussock.png | Bin 340 -> 343 bytes .../items/textures/grass_vegetation/arid.png | Bin 0 -> 397 bytes 7 files changed, 158 insertions(+), 62 deletions(-) create mode 100644 assets/cubyz/biomes/savannah/fields/arid.zig.zon create mode 100644 assets/cubyz/biomes/savannah/fields/bushy.zig.zon create mode 100644 assets/cubyz/items/textures/grass_vegetation/arid.png diff --git a/assets/cubyz/biomes/savannah/fields/_defaults.zig.zon b/assets/cubyz/biomes/savannah/fields/_defaults.zig.zon index b91f52d37a..b12a952b92 100644 --- a/assets/cubyz/biomes/savannah/fields/_defaults.zig.zon +++ b/assets/cubyz/biomes/savannah/fields/_defaults.zig.zon @@ -1,4 +1,52 @@ .{ .fogDensity = 1.5, .fogColor = 0xe9f2e2, + .properties = .{ + .hot, + .dry, + }, + .tags = .{ + .baobab, + .cactus, + }, + .minHeightLimit = 7, + .minHeight = 30, + .maxHeight = 64, + .maxHeightLimit = 42, + .smoothBeaches = true, + .minRadius = 256, + .maxRadius = 320, + .hills = 8, + .validPlayerSpawn = true, + .music = "cubyz:mischol/desert_firefly", + .structures = .{ + .{ + .id = "cubyz:ground_patch", + .block = "cubyz:dirt", + .chance = 0.07, + .width = 5, + .variation = 4, + .depth = 2, + .smoothness = 0.4, + }, + .{ + .id = "cubyz:flower_patch", + .blocks = .{"cubyz:grass/vegetation/dry"}, + .chance = 0.2, + .width = 5, + .variation = 8, + .density = 0.4, + .priority = 0.1, + }, + .{ + .id = "cubyz:flower_patch", + .blocks = .{"cubyz:tussock"}, + .chance = 0.03, + .width = 4, + .variation = 2, + .density = 0.2, + .priority = 0.1, + }, + }, + .stoneBlock = "cubyz:sandstone/rough", } diff --git a/assets/cubyz/biomes/savannah/fields/arid.zig.zon b/assets/cubyz/biomes/savannah/fields/arid.zig.zon new file mode 100644 index 0000000000..af94ca9e79 --- /dev/null +++ b/assets/cubyz/biomes/savannah/fields/arid.zig.zon @@ -0,0 +1,48 @@ +.{ + .ground_structure = .{ + "cubyz:grass/arid", + "1 to 2 cubyz:sand", + }, + .chance = 0, + .minRadius = 25, + .maxRadius = 50, + .keepOriginalTerrain = 1, + .parentBiomes = .{ + .{ + .id = "cubyz:savannah/fields/base", + .chance = 4, + }, + }, + .structures = .{ + .{ + .id = "cubyz:sbb", + .structure = "cubyz:tree/baobab/young", + .placeMode = .degradable, + .chance = 0.01, + }, + .{ + .id = "cubyz:sbb", + .structure = "cubyz:tree/baobab/young", + .placeMode = .degradable, + .chance = 0.015, + }, + .{ + .id = "cubyz:flower_patch", + .blocks = .{"cubyz:grass/vegetation/arid"}, + .chance = 0.2, + .width = 5, + .variation = 8, + .density = 0.35, + .priority = 0.1, + }, + .{ + .id = "cubyz:flower_patch", + .blocks = .{"cubyz:tussock"}, + .chance = 0.02, + .width = 5, + .variation = 3, + .density = 0.2, + .priority = 0.1, + }, + }, +} diff --git a/assets/cubyz/biomes/savannah/fields/base.zig.zon b/assets/cubyz/biomes/savannah/fields/base.zig.zon index c02386ec30..c85fa3b6b6 100644 --- a/assets/cubyz/biomes/savannah/fields/base.zig.zon +++ b/assets/cubyz/biomes/savannah/fields/base.zig.zon @@ -1,45 +1,9 @@ .{ - .properties = .{ - .hot, - .dry, - }, - .tags = .{ - .baobab, - .cactus, - }, - .minHeightLimit = 7, - .minHeight = 30, - .maxHeight = 64, - .maxHeightLimit = 42, - .smoothBeaches = true, - .minRadius = 256, - .maxRadius = 320, - .hills = 8, - .validPlayerSpawn = true, - .music = "cubyz:mischol/desert_firefly", .ground_structure = .{ "cubyz:grass/dry", "1 to 2 cubyz:dirt", }, .structures = .{ - .{ - .id = "cubyz:ground_patch", - .block = "cubyz:dirt", - .chance = 0.07, - .width = 5, - .variation = 4, - .depth = 2, - .smoothness = 0.4, - }, - .{ - .id = "cubyz:ground_patch", - .block = "cubyz:grass/arid", - .chance = 0.1, - .width = 6, - .variation = 4, - .depth = 1, - .smoothness = 0.4, - }, .{ .id = "cubyz:sbb", .structure = "cubyz:tree/baobab/young", @@ -53,13 +17,20 @@ .chance = 0.005, }, .{ - .id = "cubyz:flower_patch", - .blocks = .{"cubyz:grass/vegetation/dry"}, - .chance = 0.2, - .width = 5, - .variation = 8, - .density = 0.4, - .priority = 0.1, + .id = "cubyz:simple_vegetation", + .block = "cubyz:cactus", + .chance = 0.01, + .height = 1, + .height_variation = 3, + }, + .{ + .id = "cubyz:ground_patch", + .block = "cubyz:grass/arid", + .chance = 0.1, + .width = 6, + .variation = 4, + .depth = 1, + .smoothness = 0.4, }, .{ .id = "cubyz:flower_patch", @@ -67,25 +38,8 @@ .chance = 0.2, .width = 5, .variation = 8, - .density = 0.4, + .density = 0.35, .priority = 0.1, }, - .{ - .id = "cubyz:flower_patch", - .blocks = .{"cubyz:tussock"}, - .chance = 0.03, - .width = 4, - .variation = 2, - .density = 0.2, - .priority = 0.1, - }, - .{ - .id = "cubyz:simple_vegetation", - .block = "cubyz:cactus", - .chance = 0.02, - .height = 1, - .height_variation = 3, - }, }, - .stoneBlock = "cubyz:sandstone/rough", } diff --git a/assets/cubyz/biomes/savannah/fields/bushy.zig.zon b/assets/cubyz/biomes/savannah/fields/bushy.zig.zon new file mode 100644 index 0000000000..0f2ec74856 --- /dev/null +++ b/assets/cubyz/biomes/savannah/fields/bushy.zig.zon @@ -0,0 +1,46 @@ +.{ + .ground_structure = .{ + "cubyz:grass/dry", + "1 to 2 cubyz:dirt", + }, + .chance = 0, + .minRadius = 20, + .maxRadius = 45, + .keepOriginalTerrain = 1, + .parentBiomes = .{ + .{ + .id = "cubyz:savannah/fields/base", + .chance = 5, + }, + }, + .structures = .{ + .{ + .id = "cubyz:sbb", + .structure = "cubyz:tree/baobab/young", + .placeMode = .degradable, + .chance = 0.015, + }, + .{ + .id = "cubyz:sbb", + .structure = "cubyz:tree/baobab/bush", + .placeMode = .degradable, + .chance = 0.2, + }, + .{ + .id = "cubyz:simple_vegetation", + .block = "cubyz:cactus", + .chance = 0.01, + .height = 1, + .height_variation = 3, + }, + .{ + .id = "cubyz:flower_patch", + .blocks = .{"cubyz:grass/vegetation/arid"}, + .chance = 0.1, + .width = 5, + .variation = 6, + .density = 0.3, + .priority = 0.1, + }, + }, +} diff --git a/assets/cubyz/blocks/grass/vegetation/arid.zig.zon b/assets/cubyz/blocks/grass/vegetation/arid.zig.zon index 44ade85edf..891cc405f7 100644 --- a/assets/cubyz/blocks/grass/vegetation/arid.zig.zon +++ b/assets/cubyz/blocks/grass/vegetation/arid.zig.zon @@ -1,6 +1,6 @@ .{ .texture = "cubyz:grass/vegetation/arid", .item = .{ - .texture = "grass_vegetation/dry.png", + .texture = "grass_vegetation/arid.png", }, } diff --git a/assets/cubyz/blocks/textures/tussock.png b/assets/cubyz/blocks/textures/tussock.png index 5c664560cf4194a9b4f7398b7dd2b6a4fb48ac6b..07e45c693628492ead6299ede7e6fa99fd3fed87 100644 GIT binary patch delta 317 zcmV-D0mA;&0@nhNBYyw^b5ch_0Itp)=>Px$5lKWrR5*>@kuh$=FbqY%vK58_B~yS- z@nB@`(q6(R$dCj07}<<09eMy?p;yS{IZGznivUMMLO>8Qs*_l$Rgui)Bv9o0pCs@< zLmzhT(b`!mnaQVzfl0tUU=k3jSh{h6J?@cx!)rb@*0uULt@8^Hreh2{Q z+S<(*8Oo{=;TRF%r*dfjOav)&0Km{sTrTB P00000NkvXXu0mjfIC+os delta 314 zcmV-A0mc5;0@MPKBYy!KNklZq}6o!9i$`A<?xGF+w0**=}%S-mq0q2So=6^m6T}4h@w*<)Yl5wu+ zQAmxpDU6W!ak9K*d13vU8>b0&XA==`;KN8HI_xkm|W+#V9h==}!F!Hboe4M31n#9-y zK5TOsc^JCNd^3I=$;q#EwM}8tB!-Y0>tG2XH8}|*57)~LHXi`^0z+-L&6J4)Jpcdz M07*qoM6N<$g56_{?EnA( diff --git a/assets/cubyz/items/textures/grass_vegetation/arid.png b/assets/cubyz/items/textures/grass_vegetation/arid.png new file mode 100644 index 0000000000000000000000000000000000000000..aaa24c09252f44267aba081445b40e74202073c0 GIT binary patch literal 397 zcmV;80doF{P)Px$M@d9MR5*>blRIkyK@i7(7X&L24~s=OPOvhVaLC!&CD^1$W0&e0tF-qi{03?K z0yaU?NWjJ}a!4XcB}4*p;EQ0DYSUyF&-2w}n%QOM|JWH8{yTinmA>c7ef7jKaJ}Zx z?hf@`)taq=0dRH*e1CUEyE~-W8W@VKUUQB+*tWdwM5zN9JMdb)(+jYKiBrte=>-5x zrYqgoYz>TqGXQXkd4?aKng}4AEwr1x1mSFfCCnI6KNv@z5gVfKxw2X=L_jKwZ0fWj zifoE-zSei8{Js3)=K5Tb$k+^&`palSrDW@@-uv+QW&jc(Z6;xJ3kv)dF0q6e$(52# zIA7Bb#*r0j0^f6`oy#zpuCQ|%U3?vd`kXeCRLg}JNkS=$Y$^u&v%DFxKVdX(FC@Ta rNni<+r|0)wz`c=B%?*&7>ZispUr(Lb%;oa300000NkvXXu0mjf2-&b_ literal 0 HcmV?d00001 From d21fb290cfb956878b183cabf64131364d6669d8 Mon Sep 17 00:00:00 2001 From: Carrie Date: Tue, 4 Aug 2026 17:39:14 -0600 Subject: [PATCH 4/7] recipe and marigold the fat rat --- assets/cubyz/biomes/savannah/fields/bushy.zig.zon | 9 +++++++++ assets/cubyz/recipes/grass_recipes.zig.zon | 4 ++++ 2 files changed, 13 insertions(+) diff --git a/assets/cubyz/biomes/savannah/fields/bushy.zig.zon b/assets/cubyz/biomes/savannah/fields/bushy.zig.zon index 0f2ec74856..f2c9ff698f 100644 --- a/assets/cubyz/biomes/savannah/fields/bushy.zig.zon +++ b/assets/cubyz/biomes/savannah/fields/bushy.zig.zon @@ -42,5 +42,14 @@ .density = 0.3, .priority = 0.1, }, + .{ + .id = "cubyz:flower_patch", + .blocks = .{"cubyz:marigold"}, + .chance = 0.03, + .width = 5, + .variation = 3, + .density = 0.2, + .priority = 0.1, + }, }, } diff --git a/assets/cubyz/recipes/grass_recipes.zig.zon b/assets/cubyz/recipes/grass_recipes.zig.zon index b5d39103a7..13a009c0a0 100644 --- a/assets/cubyz/recipes/grass_recipes.zig.zon +++ b/assets/cubyz/recipes/grass_recipes.zig.zon @@ -23,6 +23,10 @@ .inputs = .{"cubyz:clay", "cubyz:grass_seeds"}, .output = "cubyz:grass/dew", }, + .{ + .inputs = .{"cubyz:sand", "cubyz:grass_seeds"}, + .output = "cubyz:grass/arid", + }, .{ .inputs = .{"cubyz:aerosoil", "cubyz:grass_seeds"}, .output = "cubyz:grass/sky", From ec0781872d9c5e1c9cca4ddbbdaf1b5fccb8c553 Mon Sep 17 00:00:00 2001 From: Carrie Date: Tue, 4 Aug 2026 18:36:38 -0600 Subject: [PATCH 5/7] oiwajfoijwaoifjwa --- assets/cubyz/biomes/savannah/fields/arid.zig.zon | 9 +++++++++ assets/cubyz/biomes/savannah/fields/base.zig.zon | 9 +++++++++ assets/cubyz/biomes/savannah/fields/bushy.zig.zon | 9 +++++++++ 3 files changed, 27 insertions(+) diff --git a/assets/cubyz/biomes/savannah/fields/arid.zig.zon b/assets/cubyz/biomes/savannah/fields/arid.zig.zon index af94ca9e79..ed4526c7b5 100644 --- a/assets/cubyz/biomes/savannah/fields/arid.zig.zon +++ b/assets/cubyz/biomes/savannah/fields/arid.zig.zon @@ -26,6 +26,15 @@ .placeMode = .degradable, .chance = 0.015, }, + .{ + .id = "cubyz:flower_patch", + .blocks = .{"cubyz:grass/vegetation/dry"}, + .chance = 0.05, + .width = 3, + .variation = 4, + .density = 0.3, + .priority = 0.1, + }, .{ .id = "cubyz:flower_patch", .blocks = .{"cubyz:grass/vegetation/arid"}, diff --git a/assets/cubyz/biomes/savannah/fields/base.zig.zon b/assets/cubyz/biomes/savannah/fields/base.zig.zon index c85fa3b6b6..7e3adf262b 100644 --- a/assets/cubyz/biomes/savannah/fields/base.zig.zon +++ b/assets/cubyz/biomes/savannah/fields/base.zig.zon @@ -23,6 +23,15 @@ .height = 1, .height_variation = 3, }, + .{ + .id = "cubyz:flower_patch", + .blocks = .{"cubyz:grass/vegetation/dry"}, + .chance = 0.2, + .width = 5, + .variation = 8, + .density = 0.4, + .priority = 0.1, + }, .{ .id = "cubyz:ground_patch", .block = "cubyz:grass/arid", diff --git a/assets/cubyz/biomes/savannah/fields/bushy.zig.zon b/assets/cubyz/biomes/savannah/fields/bushy.zig.zon index f2c9ff698f..d6ef58bbae 100644 --- a/assets/cubyz/biomes/savannah/fields/bushy.zig.zon +++ b/assets/cubyz/biomes/savannah/fields/bushy.zig.zon @@ -33,6 +33,15 @@ .height = 1, .height_variation = 3, }, + .{ + .id = "cubyz:flower_patch", + .blocks = .{"cubyz:grass/vegetation/dry"}, + .chance = 0.2, + .width = 5, + .variation = 8, + .density = 0.4, + .priority = 0.1, + }, .{ .id = "cubyz:flower_patch", .blocks = .{"cubyz:grass/vegetation/arid"}, From f919d8cc071b04095e7f084a215ddddedcb30ace Mon Sep 17 00:00:00 2001 From: Carrie Date: Wed, 5 Aug 2026 11:39:56 -0600 Subject: [PATCH 6/7] change one pixel --- .../items/textures/grass_vegetation/arid.png | Bin 397 -> 397 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/assets/cubyz/items/textures/grass_vegetation/arid.png b/assets/cubyz/items/textures/grass_vegetation/arid.png index aaa24c09252f44267aba081445b40e74202073c0..b291aaa5ec8b2592d01dc8eea94c9338b5711256 100644 GIT binary patch delta 348 zcmV-i0i*tn1C0ZaI)6QD!cY{3pA^AKq`~1*2ntRXTY|*R&EnFbi1sQgCsr1Zkz6gi1jIeo>q{-7dYCgf!~Xvz&W4=Y8Mv!G-@e&vm5dIx;DrItFew zZ2H5gj#aMPn-~CRhrpdyo&Io2w>L2qS+iju@4#~%nZGzs?0-b50~kpJomQQ}$j1^U zcB#N%d;joi01_Z;rXhR<1^x`S zSi+3>YB^7^-c>X9=aCa?0(JMra!2_7FS9_uvu2uFr5GbgDP@t%#6Z6-hb{IejP~7? u1h_5>EMfBa^!67p(Ne0o4Kl2Ls{H^tV4fnQ^+|vL0000t-+ z(C!ZPUDcYcfdO!K2z-BcMY}ts*%}y%tX^}DJJ`0o?L?^q7=JtPTD{W?u!M}RYig3QxccuKj{Nd*MT#?Aw43zrIXhNlA>#W}U@c3o`5+H3RVRH)#{1q;-gc-?| zl1(^Y(+|dx6;)~i-*cs%%P^U)uyYw*d>w`QoHmnG%Y_(8LMe-EDhB$qycw}SVKi

Date: Thu, 6 Aug 2026 12:53:40 -0600 Subject: [PATCH 7/7] brighter tussock --- assets/cubyz/blocks/textures/tussock.png | Bin 343 -> 340 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/assets/cubyz/blocks/textures/tussock.png b/assets/cubyz/blocks/textures/tussock.png index 07e45c693628492ead6299ede7e6fa99fd3fed87..24647861a1f3301e215b9eaa25b0c6794eeea4b4 100644 GIT binary patch delta 300 zcmV+{0n`510@MPKF@Fw8L_t(IjopzkYQr!Xg`YAPOU6qU;l*oj;X8Ef6?_KohOQwe z@ELjrPbSd81sh|?669ZGjxy;-ZdH=Gn#8ZC?>#*M|8v={anEXZvEhqMo(4t%kAP7? z=yD~?g4=L(%Q*A?PeABGh8TDy3tiUYVS;6x*&%kpb`2*9(|)VF_fWEDq$`a_Z7U45CfS=A`{PSuc zQwac=hMBcK^`=BW{Q904=GW)por?>5*pxU8GgOvfuTq>>gS^n#s}x?WvIMqk+^IWp yl3(A|x0TBa4J9%JnM#l$PNK2|>&3$N0|0lp47n0%oty{&0000l!Y9a(1Na!( zj4T~`0AHb3$mBUoCfkbuM?*qD5HhNhSgBQ!%;h9d#%Bm4+)ci?g z(6zNAG6-wzaUbPoAu&|GUMyC{5@pqh6et1^8Mg1|f8Blv0O;D<%@-NUsuAHB5#XnC zX#Y$EDRTh8&`(_JT}Mmw$y2Ww=Hv5y^L^%E57D;0-Rs5TOoX?WHHLn|e39YQE3AuW zNSR~kC-@P6ohYkoYqu(vATp3L2a#bX9`2g~;0t0jx${kNA%Fk?002ovPDHLkV1k?I Bj3WR5