From 4d70b4c59b3ebc424f4301d9e8975e33b4809d48 Mon Sep 17 00:00:00 2001 From: codemob-dev <69110900+codemob-dev@users.noreply.github.com> Date: Mon, 21 Jul 2025 17:40:24 -0400 Subject: [PATCH 01/15] Add mushroom caves --- assets/cubyz/biomes/cave/bolete_big.zon | 32 ++++++++++++++++++ .../cubyz/biomes/cave/glimmergill_big.zig.zon | 32 ++++++++++++++++++ .../cubyz/biomes/cave/toadstool_big.zig.zon | 32 ++++++++++++++++++ assets/cubyz/sbb/mushroom/big/bolete/base.blp | Bin 0 -> 77 bytes .../sbb/mushroom/big/bolete/base.zig.zon | 9 +++++ assets/cubyz/sbb/mushroom/big/bolete/cap.blp | Bin 0 -> 76 bytes .../sbb/mushroom/big/bolete/stem_segment.blp | Bin 0 -> 76 bytes .../mushroom/big/bolete/stem_segment.zig.zon | 9 +++++ .../sbb/mushroom/big/glimmergill/base.blp | Bin 0 -> 83 bytes .../sbb/mushroom/big/glimmergill/base.zig.zon | 9 +++++ .../sbb/mushroom/big/glimmergill/cap.blp | Bin 0 -> 92 bytes .../mushroom/big/glimmergill/stem_segment.blp | Bin 0 -> 83 bytes .../big/glimmergill/stem_segment.zig.zon | 9 +++++ .../cubyz/sbb/mushroom/big/toadstool/base.blp | Bin 0 -> 84 bytes .../sbb/mushroom/big/toadstool/base.zig.zon | 10 ++++++ .../cubyz/sbb/mushroom/big/toadstool/cap.blp | Bin 0 -> 127 bytes .../sbb/mushroom/big/toadstool/split.blp | Bin 0 -> 151 bytes .../sbb/mushroom/big/toadstool/split.zig.zon | 9 +++++ .../mushroom/big/toadstool/stem_segment.blp | Bin 0 -> 83 bytes .../big/toadstool/stem_segment.zig.zon | 9 +++++ 20 files changed, 160 insertions(+) create mode 100644 assets/cubyz/biomes/cave/bolete_big.zon create mode 100644 assets/cubyz/biomes/cave/glimmergill_big.zig.zon create mode 100644 assets/cubyz/biomes/cave/toadstool_big.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/big/bolete/base.blp create mode 100644 assets/cubyz/sbb/mushroom/big/bolete/base.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/big/bolete/cap.blp create mode 100644 assets/cubyz/sbb/mushroom/big/bolete/stem_segment.blp create mode 100644 assets/cubyz/sbb/mushroom/big/bolete/stem_segment.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/big/glimmergill/base.blp create mode 100644 assets/cubyz/sbb/mushroom/big/glimmergill/base.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/big/glimmergill/cap.blp create mode 100644 assets/cubyz/sbb/mushroom/big/glimmergill/stem_segment.blp create mode 100644 assets/cubyz/sbb/mushroom/big/glimmergill/stem_segment.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/base.blp create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/base.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/cap.blp create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/split.blp create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/split.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/stem_segment.blp create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/stem_segment.zig.zon diff --git a/assets/cubyz/biomes/cave/bolete_big.zon b/assets/cubyz/biomes/cave/bolete_big.zon new file mode 100644 index 00000000..df29b382 --- /dev/null +++ b/assets/cubyz/biomes/cave/bolete_big.zon @@ -0,0 +1,32 @@ +.{ + .isCave = true, + .maxHeight = -512, + .minHeight = -48250, + + .chance = 0.1, + + .caves = -0.1, + + .music = "cubyz:la_kubisa_caverna", + .stoneBlock = "cubyz:stone", + .ground_structure = .{ + "2 to 3 cubyz:soil", + }, + .structures = .{ + .{ + .id = "cubyz:sbb", + .structure = "cubyz:mushroom/big/bolete/base", + .placeMode = .degradable, + .chance = 0.2, + }, + .{ + .id = "cubyz:flower_patch", + .block = "cubyz:bolete", + .chance = 0.15, + .width = 8, + .variation = 4, + .density = 0.06, + .priority = 0.1, + }, + }, +} diff --git a/assets/cubyz/biomes/cave/glimmergill_big.zig.zon b/assets/cubyz/biomes/cave/glimmergill_big.zig.zon new file mode 100644 index 00000000..1007ea67 --- /dev/null +++ b/assets/cubyz/biomes/cave/glimmergill_big.zig.zon @@ -0,0 +1,32 @@ +.{ + .isCave = true, + .maxHeight = -512, + .minHeight = -48250, + + .chance = 0.1, + + .caves = -0.1, + + .music = "cubyz:la_kubisa_caverna", + .stoneBlock = "cubyz:stone", + .ground_structure = .{ + "2 to 3 cubyz:soil", + }, + .structures = .{ + .{ + .id = "cubyz:sbb", + .structure = "cubyz:mushroom/big/glimmergill/base", + .placeMode = .degradable, + .chance = 0.2, + }, + .{ + .id = "cubyz:flower_patch", + .block = "cubyz:glimmergill", + .chance = 0.15, + .width = 8, + .variation = 4, + .density = 0.06, + .priority = 0.1, + }, + }, +} diff --git a/assets/cubyz/biomes/cave/toadstool_big.zig.zon b/assets/cubyz/biomes/cave/toadstool_big.zig.zon new file mode 100644 index 00000000..aea2e97c --- /dev/null +++ b/assets/cubyz/biomes/cave/toadstool_big.zig.zon @@ -0,0 +1,32 @@ +.{ + .isCave = true, + .maxHeight = -512, + .minHeight = -48250, + + .chance = 0.1, + + .caves = -0.1, + + .music = "cubyz:la_kubisa_caverna", + .stoneBlock = "cubyz:stone", + .ground_structure = .{ + "2 to 3 cubyz:soil", + }, + .structures = .{ + .{ + .id = "cubyz:sbb", + .structure = "cubyz:mushroom/big/toadstool/base", + .placeMode = .degradable, + .chance = 0.2, + }, + .{ + .id = "cubyz:flower_patch", + .block = "cubyz:toadstool", + .chance = 0.15, + .width = 8, + .variation = 4, + .density = 0.06, + .priority = 0.1, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/big/bolete/base.blp b/assets/cubyz/sbb/mushroom/big/bolete/base.blp new file mode 100644 index 0000000000000000000000000000000000000000..f1cebc6cc4753c40f6f4a7bbd8df3e5ed7c47731 GIT binary patch literal 77 zcmZQz00Tz`W(GzeWJ^v+5b)6RUA1PDmY>(9^ZKWJ&Ywwc=zjWS`D^v3&zDSFVq{>@ ep>#zxJ>}Vw7t_;Inp7nuW=Ki|8Za{pGXMapCmS{Z literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/big/bolete/base.zig.zon b/assets/cubyz/sbb/mushroom/big/bolete/base.zig.zon new file mode 100644 index 00000000..02f12679 --- /dev/null +++ b/assets/cubyz/sbb/mushroom/big/bolete/base.zig.zon @@ -0,0 +1,9 @@ +.{ + .blueprint = "cubyz:mushroom/big/bolete/base", + .children = .{ + .white = .{ + .{.structure = "cubyz:mushroom/big/bolete/stem_segment"}, + .{.structure = "cubyz:mushroom/big/bolete/cap"}, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/big/bolete/cap.blp b/assets/cubyz/sbb/mushroom/big/bolete/cap.blp new file mode 100644 index 0000000000000000000000000000000000000000..ab14678942f0e4d78fbe1692a952e002d5f74caa GIT binary patch literal 76 zcmZQz00T1yW(HOuWJ*p*c;KbyyK2oQt<&dy5)%>x8a_<=R2<|T^mwu`w?NWSPtRXJ cU1z?WS;@1aL6F_oLr(sz%QCy5H|Y!v0A*JijsO4v literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/big/bolete/stem_segment.blp b/assets/cubyz/sbb/mushroom/big/bolete/stem_segment.blp new file mode 100644 index 0000000000000000000000000000000000000000..4d7049d69868716a9501f893700a4af87d98ab5e GIT binary patch literal 76 zcmZQz00Tz`W(GzeWKK><5b)6RUA1PDmY>(9^ZKWJ&Ywwc=zjWS`D^v3&zDSFVq{>@ bp>#zxJ>}Vw7t_;Inp7nuW=Kj%0!an{ju;zy literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/big/bolete/stem_segment.zig.zon b/assets/cubyz/sbb/mushroom/big/bolete/stem_segment.zig.zon new file mode 100644 index 00000000..c055d06a --- /dev/null +++ b/assets/cubyz/sbb/mushroom/big/bolete/stem_segment.zig.zon @@ -0,0 +1,9 @@ +.{ + .blueprint = "cubyz:mushroom/big/bolete/stem_segment", + .children = .{ + .white = .{ + .{.structure = "cubyz:mushroom/big/bolete/stem_segment"}, + .{.structure = "cubyz:mushroom/big/bolete/cap"}, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/big/glimmergill/base.blp b/assets/cubyz/sbb/mushroom/big/glimmergill/base.blp new file mode 100644 index 0000000000000000000000000000000000000000..0a68c94f6190172b2810cfe395bd40b6e200e694 GIT binary patch literal 83 zcmZQz00TD$W(GzeWJyj)5b)6RUA1PDmY>(9^ZKWJ&YuB^wRSvxvi$Y(=PA#gEfZUs i{_Kf@ibL0AW254rFQ<)-yn`ei8fG>M_DD+1U;qGY9Uox; literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/big/glimmergill/base.zig.zon b/assets/cubyz/sbb/mushroom/big/glimmergill/base.zig.zon new file mode 100644 index 00000000..ab3d732e --- /dev/null +++ b/assets/cubyz/sbb/mushroom/big/glimmergill/base.zig.zon @@ -0,0 +1,9 @@ +.{ + .blueprint = "cubyz:mushroom/big/glimmergill/base", + .children = .{ + .white = .{ + .{.structure = "cubyz:mushroom/big/glimmergill/stem_segment"}, + .{.structure = "cubyz:mushroom/big/glimmergill/cap"}, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/big/glimmergill/cap.blp b/assets/cubyz/sbb/mushroom/big/glimmergill/cap.blp new file mode 100644 index 0000000000000000000000000000000000000000..d756f9660071d3626d298f87b868da307184607a GIT binary patch literal 92 zcmZQz00V0VW(HOuWKK>xT0dMWHYzR-?!IJPT=ZzNFt>z+ t1dD>uQBTibKV4_OoLR|pgHc&9$LW=1rwMzkt?;b4qO%LH{FQjc2ml#wArb%p literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/big/glimmergill/stem_segment.blp b/assets/cubyz/sbb/mushroom/big/glimmergill/stem_segment.blp new file mode 100644 index 0000000000000000000000000000000000000000..be7c57f093d6dec0701d127bace3596a985b0282 GIT binary patch literal 83 zcmZQz00TD$W(GzeWKK><5b)6RUA1PDmY>(9^ZKWJ&YuB^wRSvxvi$Y(=PA#gEfZUs i{_Kf@ibL0AW254rFQ<)-yn`ei8fG?5Y;0`gWB>qgUmzC% literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/big/glimmergill/stem_segment.zig.zon b/assets/cubyz/sbb/mushroom/big/glimmergill/stem_segment.zig.zon new file mode 100644 index 00000000..624db6b1 --- /dev/null +++ b/assets/cubyz/sbb/mushroom/big/glimmergill/stem_segment.zig.zon @@ -0,0 +1,9 @@ +.{ + .blueprint = "cubyz:mushroom/big/glimmergill/stem_segment", + .children = .{ + .white = .{ + .{.structure = "cubyz:mushroom/big/glimmergill/stem_segment"}, + .{.structure = "cubyz:mushroom/big/glimmergill/cap"}, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/base.blp b/assets/cubyz/sbb/mushroom/big/toadstool/base.blp new file mode 100644 index 0000000000000000000000000000000000000000..1e870d6b85940a9b175de7f060af358d5e79fba3 GIT binary patch literal 84 zcmZQz00S2WW(GzeWKB*;5b)6RUA1PDmY>(9^ZKWJ&YuB^wRJpwvi$Y*C+f>YrayW9 j+`zz~LurayddjmUFQ%ubOj}~qz+lX*EMsh7z{mgqc$gkp literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/base.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/base.zig.zon new file mode 100644 index 00000000..4745c830 --- /dev/null +++ b/assets/cubyz/sbb/mushroom/big/toadstool/base.zig.zon @@ -0,0 +1,10 @@ +.{ + .blueprint = "cubyz:mushroom/big/toadstool/base", + .children = .{ + .white = .{ + .{.structure = "cubyz:mushroom/big/toadstool/stem_segment"}, + .{.structure = "cubyz:mushroom/big/toadstool/cap"}, + .{.structure = "cubyz:mushroom/big/toadstool/split"}, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/cap.blp b/assets/cubyz/sbb/mushroom/big/toadstool/cap.blp new file mode 100644 index 0000000000000000000000000000000000000000..d8adfce5e76542251c74c3cdad30ee229990b629 GIT binary patch literal 127 zcmZQz0D~+BRxo5vPDps*rRTe9%_gnW=Y0|r5(L^lczqHM?(+Whx%km!VQvWti6a+U zCwB>bo@5MUvnUuH_4NGp({<*{nUx&QMV~HzeP|_Nz^E*k6Z1;2MvhHQ=GVsAnGE6Q b&m1^&fN8q1gCYC;YLAWL(|>>bCC&fuT4; z5ifN)G=NQ1wRPT<5b)6RUA1PDmY>(9^ZKWJ&YuB^wRJpwvi$Y*C+f>YrayW9 i+`zz~LurayddjmUFQ%ubOj}~qz+lX*%*@Oz%m4saxE;d) literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/stem_segment.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/stem_segment.zig.zon new file mode 100644 index 00000000..f309798f --- /dev/null +++ b/assets/cubyz/sbb/mushroom/big/toadstool/stem_segment.zig.zon @@ -0,0 +1,9 @@ +.{ + .blueprint = "cubyz:mushroom/big/toadstool/stem_segment", + .children = .{ + .white = .{ + .{.structure = "cubyz:mushroom/big/toadstool/stem_segment"}, + .{.structure = "cubyz:mushroom/big/toadstool/cap"}, + }, + }, +} From 6410e2b3335759a81931f6ee1ddfc78a24de7d53 Mon Sep 17 00:00:00 2001 From: codemob-dev <69110900+codemob-dev@users.noreply.github.com> Date: Mon, 21 Jul 2025 20:18:59 -0400 Subject: [PATCH 02/15] Improved the boletes --- assets/cubyz/biomes/cave/bolete_big.zon | 2 +- assets/cubyz/biomes/cave/toadstool_big.zig.zon | 2 +- assets/cubyz/sbb/mushroom/big/bolete/base.zig.zon | 1 + assets/cubyz/sbb/mushroom/big/bolete/cap.zig.zon | 10 ++++++++++ .../mushroom/big/bolete/{cap.blp => cap/0.blp} | Bin assets/cubyz/sbb/mushroom/big/bolete/cap/1.blp | Bin 0 -> 85 bytes assets/cubyz/sbb/mushroom/big/bolete/cap/2.blp | Bin 0 -> 117 bytes assets/cubyz/sbb/mushroom/big/bolete/empty.blp | Bin 0 -> 58 bytes .../cubyz/sbb/mushroom/big/bolete/empty.zig.zon | 8 ++++++++ assets/cubyz/sbb/mushroom/big/bolete/split.blp | Bin 0 -> 140 bytes .../cubyz/sbb/mushroom/big/bolete/split.zig.zon | 9 +++++++++ blueprints/cap_slanted.blp | Bin 0 -> 133 bytes 12 files changed, 30 insertions(+), 2 deletions(-) create mode 100644 assets/cubyz/sbb/mushroom/big/bolete/cap.zig.zon rename assets/cubyz/sbb/mushroom/big/bolete/{cap.blp => cap/0.blp} (100%) create mode 100644 assets/cubyz/sbb/mushroom/big/bolete/cap/1.blp create mode 100644 assets/cubyz/sbb/mushroom/big/bolete/cap/2.blp create mode 100644 assets/cubyz/sbb/mushroom/big/bolete/empty.blp create mode 100644 assets/cubyz/sbb/mushroom/big/bolete/empty.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/big/bolete/split.blp create mode 100644 assets/cubyz/sbb/mushroom/big/bolete/split.zig.zon create mode 100644 blueprints/cap_slanted.blp diff --git a/assets/cubyz/biomes/cave/bolete_big.zon b/assets/cubyz/biomes/cave/bolete_big.zon index df29b382..cbe645c2 100644 --- a/assets/cubyz/biomes/cave/bolete_big.zon +++ b/assets/cubyz/biomes/cave/bolete_big.zon @@ -3,7 +3,7 @@ .maxHeight = -512, .minHeight = -48250, - .chance = 0.1, + .chance = 0.15, .caves = -0.1, diff --git a/assets/cubyz/biomes/cave/toadstool_big.zig.zon b/assets/cubyz/biomes/cave/toadstool_big.zig.zon index aea2e97c..2734735d 100644 --- a/assets/cubyz/biomes/cave/toadstool_big.zig.zon +++ b/assets/cubyz/biomes/cave/toadstool_big.zig.zon @@ -3,7 +3,7 @@ .maxHeight = -512, .minHeight = -48250, - .chance = 0.1, + .chance = 0.125, .caves = -0.1, diff --git a/assets/cubyz/sbb/mushroom/big/bolete/base.zig.zon b/assets/cubyz/sbb/mushroom/big/bolete/base.zig.zon index 02f12679..ec4dfaf5 100644 --- a/assets/cubyz/sbb/mushroom/big/bolete/base.zig.zon +++ b/assets/cubyz/sbb/mushroom/big/bolete/base.zig.zon @@ -4,6 +4,7 @@ .white = .{ .{.structure = "cubyz:mushroom/big/bolete/stem_segment"}, .{.structure = "cubyz:mushroom/big/bolete/cap"}, + .{.structure = "cubyz:mushroom/big/bolete/split"}, }, }, } diff --git a/assets/cubyz/sbb/mushroom/big/bolete/cap.zig.zon b/assets/cubyz/sbb/mushroom/big/bolete/cap.zig.zon new file mode 100644 index 00000000..ff30783b --- /dev/null +++ b/assets/cubyz/sbb/mushroom/big/bolete/cap.zig.zon @@ -0,0 +1,10 @@ +.{ + .blueprint = "cubyz:mushroom/big/bolete/empty", + .children = .{ + .white = .{ + .{.structure = "cubyz:mushroom/big/bolete/cap/0"}, + .{.structure = "cubyz:mushroom/big/bolete/cap/1"}, + .{.structure = "cubyz:mushroom/big/bolete/cap/2"}, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/big/bolete/cap.blp b/assets/cubyz/sbb/mushroom/big/bolete/cap/0.blp similarity index 100% rename from assets/cubyz/sbb/mushroom/big/bolete/cap.blp rename to assets/cubyz/sbb/mushroom/big/bolete/cap/0.blp diff --git a/assets/cubyz/sbb/mushroom/big/bolete/cap/1.blp b/assets/cubyz/sbb/mushroom/big/bolete/cap/1.blp new file mode 100644 index 0000000000000000000000000000000000000000..0c90508c63e27b7f7e710172f4c9d91014df6a50 GIT binary patch literal 85 zcmZQz00T1yW(HOuWKK>x8a_<=R2<|T^mwu`w?NWSPtRXJ mU1z?WS;=#QQCTo2=2MT$hL1DPy0l1ny*cu{EGNf;fdK%M!XU~3 literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/big/bolete/cap/2.blp b/assets/cubyz/sbb/mushroom/big/bolete/cap/2.blp new file mode 100644 index 0000000000000000000000000000000000000000..96fa5bb58b90b13ac78266380939e6f1f4c01d69 GIT binary patch literal 117 zcmV-*0E+(r00000003bC1po#B0{{eLU|`@%E={VevMS5ZOkrSP5P(9^ZKWJ&YuB^xpt_gr#xHoVtRVYv?WFk H49W}uk@FG= literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/big/bolete/empty.zig.zon b/assets/cubyz/sbb/mushroom/big/bolete/empty.zig.zon new file mode 100644 index 00000000..10768d22 --- /dev/null +++ b/assets/cubyz/sbb/mushroom/big/bolete/empty.zig.zon @@ -0,0 +1,8 @@ +.{ + .blueprint = "cubyz:mushroom/big/bolete/empty", + .children = .{ + .white = .{ + .{.structure = null}, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/big/bolete/split.blp b/assets/cubyz/sbb/mushroom/big/bolete/split.blp new file mode 100644 index 0000000000000000000000000000000000000000..9ba32132f839d82576dbe9fc19ff70eed16d0f4e GIT binary patch literal 140 zcmV;70CWEU00000004Rb1^@*B0{{h$j7tiGFcd{kv<@mA2&L=DyqhT|ig^%Bu|L|? z7tBCHgZ0kdx%WJvwh#0EoS#8Dpoy0cgEqnU_Z~P!b~8p>C%)4!Cv(v(MVMreabZ!u u*!Bt>6K1A%w2rk@C<+u%tnSj3lql-i+nQZ+9jJa-ZkOBav+kB(f7usNh&;*w literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/big/bolete/split.zig.zon b/assets/cubyz/sbb/mushroom/big/bolete/split.zig.zon new file mode 100644 index 00000000..61a9025e --- /dev/null +++ b/assets/cubyz/sbb/mushroom/big/bolete/split.zig.zon @@ -0,0 +1,9 @@ +.{ + .blueprint = "cubyz:mushroom/big/bolete/split", + .children = .{ + .white = .{ + .{.structure = "cubyz:mushroom/big/bolete/stem_segment"}, + .{.structure = "cubyz:mushroom/big/bolete/cap"}, + }, + }, +} diff --git a/blueprints/cap_slanted.blp b/blueprints/cap_slanted.blp new file mode 100644 index 0000000000000000000000000000000000000000..e73e198467d3ee52c438e38e604e2d74c7a2edfd GIT binary patch literal 133 zcmZQz0D~+BRxo5qPDps*rRTe9%_gnW=Y0|r5(L^lczqHM?(+Whx%km!VQvWti6a+U zCwB>bo@5MUvnUuH_4NGp({<*{nUx&QMV~HzeP|_7!0aaUv*pX;u8#%=f(F9kvl|aG hxau1-D>HL58#8mqoMAYelXS;#-R%vGn-23a002V+G1~wD literal 0 HcmV?d00001 From fc1ff354154bfb334bfede4b0a3a58275c3696d4 Mon Sep 17 00:00:00 2001 From: codemob-dev <69110900+codemob-dev@users.noreply.github.com> Date: Mon, 21 Jul 2025 20:33:40 -0400 Subject: [PATCH 03/15] Improve toadstools --- .../cubyz/sbb/mushroom/big/toadstool/cap.zig.zon | 10 ++++++++++ .../mushroom/big/toadstool/{cap.blp => cap/0.blp} | Bin .../cubyz/sbb/mushroom/big/toadstool/cap/1.blp | Bin assets/cubyz/sbb/mushroom/big/toadstool/cap/2.blp | Bin 0 -> 141 bytes assets/cubyz/sbb/mushroom/big/toadstool/empty.blp | Bin 0 -> 58 bytes .../sbb/mushroom/big/toadstool/empty.zig.zon | 8 ++++++++ 6 files changed, 18 insertions(+) create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/cap.zig.zon rename assets/cubyz/sbb/mushroom/big/toadstool/{cap.blp => cap/0.blp} (100%) rename blueprints/cap_slanted.blp => assets/cubyz/sbb/mushroom/big/toadstool/cap/1.blp (100%) create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/cap/2.blp create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/empty.blp create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/empty.zig.zon diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/cap.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/cap.zig.zon new file mode 100644 index 00000000..eb87a10c --- /dev/null +++ b/assets/cubyz/sbb/mushroom/big/toadstool/cap.zig.zon @@ -0,0 +1,10 @@ +.{ + .blueprint = "cubyz:mushroom/big/toadstool/empty", + .children = .{ + .white = .{ + .{.structure = "cubyz:mushroom/big/toadstool/cap/0"}, + .{.structure = "cubyz:mushroom/big/toadstool/cap/1"}, + .{.structure = "cubyz:mushroom/big/toadstool/cap/2"}, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/cap.blp b/assets/cubyz/sbb/mushroom/big/toadstool/cap/0.blp similarity index 100% rename from assets/cubyz/sbb/mushroom/big/toadstool/cap.blp rename to assets/cubyz/sbb/mushroom/big/toadstool/cap/0.blp diff --git a/blueprints/cap_slanted.blp b/assets/cubyz/sbb/mushroom/big/toadstool/cap/1.blp similarity index 100% rename from blueprints/cap_slanted.blp rename to assets/cubyz/sbb/mushroom/big/toadstool/cap/1.blp diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/cap/2.blp b/assets/cubyz/sbb/mushroom/big/toadstool/cap/2.blp new file mode 100644 index 0000000000000000000000000000000000000000..08fcdba5cfd134dfd84e2b842602ba43e69d9bf9 GIT binary patch literal 141 zcmZQz0D~+BRt7c(W(L;egoFoPdcLdHY|=V?-X}33L7?q}*C*lNF7HpDiyuuE=9Z9< zIC7zNa+lEONyb1ni-OTnPtRXJU1z?WS;^sC^y%`~hgK2-4HFrK4Uz=a*Yr(o>^wNH rk+VJS&$EvQz6vJmZ?Z6EmS*O@`R-XtLSjN15Hrno+_jr?1v3KxL#sFR literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/empty.blp b/assets/cubyz/sbb/mushroom/big/toadstool/empty.blp new file mode 100644 index 0000000000000000000000000000000000000000..bc4ddb17438b6bdb70d84e91249f581756756b26 GIT binary patch literal 58 zcmZQz00UhHCI&_zWJ*p*5b)6RUA1PDmY>(9^ZKWJ&YuB^xpt_gr#xHoVtRVYv?WFk H49W}uk@FG= literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/empty.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/empty.zig.zon new file mode 100644 index 00000000..540d49be --- /dev/null +++ b/assets/cubyz/sbb/mushroom/big/toadstool/empty.zig.zon @@ -0,0 +1,8 @@ +.{ + .blueprint = "cubyz:mushroom/big/toadstool/empty", + .children = .{ + .white = .{ + .{.structure = null}, + }, + }, +} From 83296608e69ff0f2190c806e5b018eb82e91de34 Mon Sep 17 00:00:00 2001 From: codemob-dev <69110900+codemob-dev@users.noreply.github.com> Date: Tue, 22 Jul 2025 09:48:44 -0400 Subject: [PATCH 04/15] Add better glimmergill --- .../sbb/mushroom/big/glimmergill/base.zig.zon | 1 + .../sbb/mushroom/big/glimmergill/cap.zig.zon | 10 ++++++++++ .../big/glimmergill/{cap.blp => cap/0.blp} | Bin .../cubyz/sbb/mushroom/big/glimmergill/cap/1.blp | Bin 0 -> 106 bytes .../cubyz/sbb/mushroom/big/glimmergill/cap/2.blp | Bin 0 -> 131 bytes .../cubyz/sbb/mushroom/big/glimmergill/empty.blp | Bin 0 -> 58 bytes .../sbb/mushroom/big/glimmergill/empty.zig.zon | 8 ++++++++ .../cubyz/sbb/mushroom/big/glimmergill/split.blp | Bin 0 -> 135 bytes .../sbb/mushroom/big/glimmergill/split.zig.zon | 9 +++++++++ 9 files changed, 28 insertions(+) create mode 100644 assets/cubyz/sbb/mushroom/big/glimmergill/cap.zig.zon rename assets/cubyz/sbb/mushroom/big/glimmergill/{cap.blp => cap/0.blp} (100%) create mode 100644 assets/cubyz/sbb/mushroom/big/glimmergill/cap/1.blp create mode 100644 assets/cubyz/sbb/mushroom/big/glimmergill/cap/2.blp create mode 100644 assets/cubyz/sbb/mushroom/big/glimmergill/empty.blp create mode 100644 assets/cubyz/sbb/mushroom/big/glimmergill/empty.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/big/glimmergill/split.blp create mode 100644 assets/cubyz/sbb/mushroom/big/glimmergill/split.zig.zon diff --git a/assets/cubyz/sbb/mushroom/big/glimmergill/base.zig.zon b/assets/cubyz/sbb/mushroom/big/glimmergill/base.zig.zon index ab3d732e..cbd053ee 100644 --- a/assets/cubyz/sbb/mushroom/big/glimmergill/base.zig.zon +++ b/assets/cubyz/sbb/mushroom/big/glimmergill/base.zig.zon @@ -4,6 +4,7 @@ .white = .{ .{.structure = "cubyz:mushroom/big/glimmergill/stem_segment"}, .{.structure = "cubyz:mushroom/big/glimmergill/cap"}, + .{.structure = "cubyz:mushroom/big/glimmergill/split"}, }, }, } diff --git a/assets/cubyz/sbb/mushroom/big/glimmergill/cap.zig.zon b/assets/cubyz/sbb/mushroom/big/glimmergill/cap.zig.zon new file mode 100644 index 00000000..530d827a --- /dev/null +++ b/assets/cubyz/sbb/mushroom/big/glimmergill/cap.zig.zon @@ -0,0 +1,10 @@ +.{ + .blueprint = "cubyz:mushroom/big/glimmergill/empty", + .children = .{ + .white = .{ + .{.structure = "cubyz:mushroom/big/glimmergill/cap/0"}, + .{.structure = "cubyz:mushroom/big/glimmergill/cap/1"}, + .{.structure = "cubyz:mushroom/big/glimmergill/cap/2"}, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/big/glimmergill/cap.blp b/assets/cubyz/sbb/mushroom/big/glimmergill/cap/0.blp similarity index 100% rename from assets/cubyz/sbb/mushroom/big/glimmergill/cap.blp rename to assets/cubyz/sbb/mushroom/big/glimmergill/cap/0.blp diff --git a/assets/cubyz/sbb/mushroom/big/glimmergill/cap/1.blp b/assets/cubyz/sbb/mushroom/big/glimmergill/cap/1.blp new file mode 100644 index 0000000000000000000000000000000000000000..46749ea3efb9bc490704e874b84d68895d26cd8e GIT binary patch literal 106 zcmZQz00V0VW(HOuWJyj)c;KbyyK2oQt<&dy5)%>xT0dMWHYzR-?!IJPT=ZzNFt>z+ z1dD>uQBTibKV4_OoLR~9gHc&(wqU=F-QFE%oWzww?Kun{8gx&nE3vHk#ko^dcETfZ H5e5bT3t}Y- literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/big/glimmergill/cap/2.blp b/assets/cubyz/sbb/mushroom/big/glimmergill/cap/2.blp new file mode 100644 index 0000000000000000000000000000000000000000..4166b1a9c08315f463f914d8edcf147d5393c6ba GIT binary patch literal 131 zcmZQz0D}SsRt7c(W(L;egoFoPdcLdHY|=V?-X}33L7?@+rDCJv;^6K}#>GXCCJS>* zNJyv{s7~q<`aH=P$YxO}I_l~9>!<6?moqClnu|VN{yOoC!2%{XHXnyw657ndQ~Y(9^ZKWJ&YuB^xpt_gr#xHoVtRVYv?WFk H49W}uk@FG= literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/big/glimmergill/empty.zig.zon b/assets/cubyz/sbb/mushroom/big/glimmergill/empty.zig.zon new file mode 100644 index 00000000..6dd99ebb --- /dev/null +++ b/assets/cubyz/sbb/mushroom/big/glimmergill/empty.zig.zon @@ -0,0 +1,8 @@ +.{ + .blueprint = "cubyz:mushroom/big/glimmergill/empty", + .children = .{ + .white = .{ + .{.structure = null}, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/big/glimmergill/split.blp b/assets/cubyz/sbb/mushroom/big/glimmergill/split.blp new file mode 100644 index 0000000000000000000000000000000000000000..4d7ba0d6c20bd3ecde5f090b03a4f9a3fd41d3a6 GIT binary patch literal 135 zcmV;20C@iZ00000004;q1^@&A0{{etjLizdFc1c(wLRFA7s0pa-ItLjEy=>Rk@$x` zy`W+&2A$J>%&N+LvYGNt(A p!_IblVDl|Z>?Z5UQBzP-0A<$CSlN&VVY*3WN#wRa&1Kyv^9 literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/big/glimmergill/split.zig.zon b/assets/cubyz/sbb/mushroom/big/glimmergill/split.zig.zon new file mode 100644 index 00000000..2e295775 --- /dev/null +++ b/assets/cubyz/sbb/mushroom/big/glimmergill/split.zig.zon @@ -0,0 +1,9 @@ +.{ + .blueprint = "cubyz:mushroom/big/glimmergill/split", + .children = .{ + .white = .{ + .{.structure = "cubyz:mushroom/big/glimmergill/stem_segment"}, + .{.structure = "cubyz:mushroom/big/glimmergill/cap"}, + }, + }, +} From e7a5401308d7b9e39b4cb2473bad2d627e2d9dbc Mon Sep 17 00:00:00 2001 From: codemob-dev <69110900+codemob-dev@users.noreply.github.com> Date: Tue, 22 Jul 2025 10:42:42 -0400 Subject: [PATCH 05/15] Improved cave biome generation --- assets/cubyz/biomes/cave/bolete_big.zon | 11 ++++++++++- assets/cubyz/biomes/cave/glimmergill_big.zig.zon | 11 ++++++++++- assets/cubyz/biomes/cave/toadstool_big.zig.zon | 11 ++++++++++- 3 files changed, 30 insertions(+), 3 deletions(-) diff --git a/assets/cubyz/biomes/cave/bolete_big.zon b/assets/cubyz/biomes/cave/bolete_big.zon index cbe645c2..ab0f8eff 100644 --- a/assets/cubyz/biomes/cave/bolete_big.zon +++ b/assets/cubyz/biomes/cave/bolete_big.zon @@ -5,7 +5,7 @@ .chance = 0.15, - .caves = -0.1, + .caves = -0.05, .music = "cubyz:la_kubisa_caverna", .stoneBlock = "cubyz:stone", @@ -13,6 +13,15 @@ "2 to 3 cubyz:soil", }, .structures = .{ + .{ + .id = "cubyz:ground_patch", + .block = "cubyz:clay", + .chance = 0.3, + .width = 5, + .variation = 5, + .depth = 1, + .smoothness = 0.5, + }, .{ .id = "cubyz:sbb", .structure = "cubyz:mushroom/big/bolete/base", diff --git a/assets/cubyz/biomes/cave/glimmergill_big.zig.zon b/assets/cubyz/biomes/cave/glimmergill_big.zig.zon index 1007ea67..81050636 100644 --- a/assets/cubyz/biomes/cave/glimmergill_big.zig.zon +++ b/assets/cubyz/biomes/cave/glimmergill_big.zig.zon @@ -5,7 +5,7 @@ .chance = 0.1, - .caves = -0.1, + .caves = -0.05, .music = "cubyz:la_kubisa_caverna", .stoneBlock = "cubyz:stone", @@ -13,6 +13,15 @@ "2 to 3 cubyz:soil", }, .structures = .{ + .{ + .id = "cubyz:ground_patch", + .block = "cubyz:clay", + .chance = 0.3, + .width = 5, + .variation = 5, + .depth = 1, + .smoothness = 0.5, + }, .{ .id = "cubyz:sbb", .structure = "cubyz:mushroom/big/glimmergill/base", diff --git a/assets/cubyz/biomes/cave/toadstool_big.zig.zon b/assets/cubyz/biomes/cave/toadstool_big.zig.zon index 2734735d..7c4a01b8 100644 --- a/assets/cubyz/biomes/cave/toadstool_big.zig.zon +++ b/assets/cubyz/biomes/cave/toadstool_big.zig.zon @@ -5,7 +5,7 @@ .chance = 0.125, - .caves = -0.1, + .caves = -0.05, .music = "cubyz:la_kubisa_caverna", .stoneBlock = "cubyz:stone", @@ -13,6 +13,15 @@ "2 to 3 cubyz:soil", }, .structures = .{ + .{ + .id = "cubyz:ground_patch", + .block = "cubyz:clay", + .chance = 0.3, + .width = 5, + .variation = 5, + .depth = 1, + .smoothness = 0.5, + }, .{ .id = "cubyz:sbb", .structure = "cubyz:mushroom/big/toadstool/base", From ba4842df8c0a32263d4ce39159fce96ea63aa00e Mon Sep 17 00:00:00 2001 From: codemob-dev <69110900+codemob-dev@users.noreply.github.com> Date: Tue, 22 Jul 2025 10:43:32 -0400 Subject: [PATCH 06/15] Made bolete_big use .zig.zon --- assets/cubyz/biomes/cave/{bolete_big.zon => bolete_big.zig.zon} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename assets/cubyz/biomes/cave/{bolete_big.zon => bolete_big.zig.zon} (100%) diff --git a/assets/cubyz/biomes/cave/bolete_big.zon b/assets/cubyz/biomes/cave/bolete_big.zig.zon similarity index 100% rename from assets/cubyz/biomes/cave/bolete_big.zon rename to assets/cubyz/biomes/cave/bolete_big.zig.zon From 9e24a61eaf1cbd1ec8e7c0a1f2b8afc3a7e76a4d Mon Sep 17 00:00:00 2001 From: codemob-dev <69110900+codemob-dev@users.noreply.github.com> Date: Wed, 23 Jul 2025 14:10:23 -0400 Subject: [PATCH 07/15] Removed other mushroom caves --- .../cubyz/biomes/cave/glimmergill_big.zig.zon | 41 ------------------ .../cubyz/biomes/cave/toadstool_big.zig.zon | 41 ------------------ .../sbb/mushroom/big/glimmergill/base.blp | Bin 83 -> 0 bytes .../sbb/mushroom/big/glimmergill/base.zig.zon | 10 ----- .../sbb/mushroom/big/glimmergill/cap.zig.zon | 10 ----- .../sbb/mushroom/big/glimmergill/cap/0.blp | Bin 92 -> 0 bytes .../sbb/mushroom/big/glimmergill/cap/1.blp | Bin 106 -> 0 bytes .../sbb/mushroom/big/glimmergill/cap/2.blp | Bin 131 -> 0 bytes .../sbb/mushroom/big/glimmergill/empty.blp | Bin 58 -> 0 bytes .../mushroom/big/glimmergill/empty.zig.zon | 8 ---- .../sbb/mushroom/big/glimmergill/split.blp | Bin 135 -> 0 bytes .../mushroom/big/glimmergill/split.zig.zon | 9 ---- .../mushroom/big/glimmergill/stem_segment.blp | Bin 83 -> 0 bytes .../big/glimmergill/stem_segment.zig.zon | 9 ---- .../cubyz/sbb/mushroom/big/toadstool/base.blp | Bin 84 -> 0 bytes .../sbb/mushroom/big/toadstool/base.zig.zon | 10 ----- .../sbb/mushroom/big/toadstool/cap.zig.zon | 10 ----- .../sbb/mushroom/big/toadstool/cap/0.blp | Bin 127 -> 0 bytes .../sbb/mushroom/big/toadstool/cap/1.blp | Bin 133 -> 0 bytes .../sbb/mushroom/big/toadstool/cap/2.blp | Bin 141 -> 0 bytes .../sbb/mushroom/big/toadstool/empty.blp | Bin 58 -> 0 bytes .../sbb/mushroom/big/toadstool/empty.zig.zon | 8 ---- .../sbb/mushroom/big/toadstool/split.blp | Bin 151 -> 0 bytes .../sbb/mushroom/big/toadstool/split.zig.zon | 9 ---- .../mushroom/big/toadstool/stem_segment.blp | Bin 83 -> 0 bytes .../big/toadstool/stem_segment.zig.zon | 9 ---- 26 files changed, 174 deletions(-) delete mode 100644 assets/cubyz/biomes/cave/glimmergill_big.zig.zon delete mode 100644 assets/cubyz/biomes/cave/toadstool_big.zig.zon delete mode 100644 assets/cubyz/sbb/mushroom/big/glimmergill/base.blp delete mode 100644 assets/cubyz/sbb/mushroom/big/glimmergill/base.zig.zon delete mode 100644 assets/cubyz/sbb/mushroom/big/glimmergill/cap.zig.zon delete mode 100644 assets/cubyz/sbb/mushroom/big/glimmergill/cap/0.blp delete mode 100644 assets/cubyz/sbb/mushroom/big/glimmergill/cap/1.blp delete mode 100644 assets/cubyz/sbb/mushroom/big/glimmergill/cap/2.blp delete mode 100644 assets/cubyz/sbb/mushroom/big/glimmergill/empty.blp delete mode 100644 assets/cubyz/sbb/mushroom/big/glimmergill/empty.zig.zon delete mode 100644 assets/cubyz/sbb/mushroom/big/glimmergill/split.blp delete mode 100644 assets/cubyz/sbb/mushroom/big/glimmergill/split.zig.zon delete mode 100644 assets/cubyz/sbb/mushroom/big/glimmergill/stem_segment.blp delete mode 100644 assets/cubyz/sbb/mushroom/big/glimmergill/stem_segment.zig.zon delete mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/base.blp delete mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/base.zig.zon delete mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/cap.zig.zon delete mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/cap/0.blp delete mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/cap/1.blp delete mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/cap/2.blp delete mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/empty.blp delete mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/empty.zig.zon delete mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/split.blp delete mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/split.zig.zon delete mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/stem_segment.blp delete mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/stem_segment.zig.zon diff --git a/assets/cubyz/biomes/cave/glimmergill_big.zig.zon b/assets/cubyz/biomes/cave/glimmergill_big.zig.zon deleted file mode 100644 index 81050636..00000000 --- a/assets/cubyz/biomes/cave/glimmergill_big.zig.zon +++ /dev/null @@ -1,41 +0,0 @@ -.{ - .isCave = true, - .maxHeight = -512, - .minHeight = -48250, - - .chance = 0.1, - - .caves = -0.05, - - .music = "cubyz:la_kubisa_caverna", - .stoneBlock = "cubyz:stone", - .ground_structure = .{ - "2 to 3 cubyz:soil", - }, - .structures = .{ - .{ - .id = "cubyz:ground_patch", - .block = "cubyz:clay", - .chance = 0.3, - .width = 5, - .variation = 5, - .depth = 1, - .smoothness = 0.5, - }, - .{ - .id = "cubyz:sbb", - .structure = "cubyz:mushroom/big/glimmergill/base", - .placeMode = .degradable, - .chance = 0.2, - }, - .{ - .id = "cubyz:flower_patch", - .block = "cubyz:glimmergill", - .chance = 0.15, - .width = 8, - .variation = 4, - .density = 0.06, - .priority = 0.1, - }, - }, -} diff --git a/assets/cubyz/biomes/cave/toadstool_big.zig.zon b/assets/cubyz/biomes/cave/toadstool_big.zig.zon deleted file mode 100644 index 7c4a01b8..00000000 --- a/assets/cubyz/biomes/cave/toadstool_big.zig.zon +++ /dev/null @@ -1,41 +0,0 @@ -.{ - .isCave = true, - .maxHeight = -512, - .minHeight = -48250, - - .chance = 0.125, - - .caves = -0.05, - - .music = "cubyz:la_kubisa_caverna", - .stoneBlock = "cubyz:stone", - .ground_structure = .{ - "2 to 3 cubyz:soil", - }, - .structures = .{ - .{ - .id = "cubyz:ground_patch", - .block = "cubyz:clay", - .chance = 0.3, - .width = 5, - .variation = 5, - .depth = 1, - .smoothness = 0.5, - }, - .{ - .id = "cubyz:sbb", - .structure = "cubyz:mushroom/big/toadstool/base", - .placeMode = .degradable, - .chance = 0.2, - }, - .{ - .id = "cubyz:flower_patch", - .block = "cubyz:toadstool", - .chance = 0.15, - .width = 8, - .variation = 4, - .density = 0.06, - .priority = 0.1, - }, - }, -} diff --git a/assets/cubyz/sbb/mushroom/big/glimmergill/base.blp b/assets/cubyz/sbb/mushroom/big/glimmergill/base.blp deleted file mode 100644 index 0a68c94f6190172b2810cfe395bd40b6e200e694..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 83 zcmZQz00TD$W(GzeWJyj)5b)6RUA1PDmY>(9^ZKWJ&YuB^wRSvxvi$Y(=PA#gEfZUs i{_Kf@ibL0AW254rFQ<)-yn`ei8fG>M_DD+1U;qGY9Uox; diff --git a/assets/cubyz/sbb/mushroom/big/glimmergill/base.zig.zon b/assets/cubyz/sbb/mushroom/big/glimmergill/base.zig.zon deleted file mode 100644 index cbd053ee..00000000 --- a/assets/cubyz/sbb/mushroom/big/glimmergill/base.zig.zon +++ /dev/null @@ -1,10 +0,0 @@ -.{ - .blueprint = "cubyz:mushroom/big/glimmergill/base", - .children = .{ - .white = .{ - .{.structure = "cubyz:mushroom/big/glimmergill/stem_segment"}, - .{.structure = "cubyz:mushroom/big/glimmergill/cap"}, - .{.structure = "cubyz:mushroom/big/glimmergill/split"}, - }, - }, -} diff --git a/assets/cubyz/sbb/mushroom/big/glimmergill/cap.zig.zon b/assets/cubyz/sbb/mushroom/big/glimmergill/cap.zig.zon deleted file mode 100644 index 530d827a..00000000 --- a/assets/cubyz/sbb/mushroom/big/glimmergill/cap.zig.zon +++ /dev/null @@ -1,10 +0,0 @@ -.{ - .blueprint = "cubyz:mushroom/big/glimmergill/empty", - .children = .{ - .white = .{ - .{.structure = "cubyz:mushroom/big/glimmergill/cap/0"}, - .{.structure = "cubyz:mushroom/big/glimmergill/cap/1"}, - .{.structure = "cubyz:mushroom/big/glimmergill/cap/2"}, - }, - }, -} diff --git a/assets/cubyz/sbb/mushroom/big/glimmergill/cap/0.blp b/assets/cubyz/sbb/mushroom/big/glimmergill/cap/0.blp deleted file mode 100644 index d756f9660071d3626d298f87b868da307184607a..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 92 zcmZQz00V0VW(HOuWKK>xT0dMWHYzR-?!IJPT=ZzNFt>z+ t1dD>uQBTibKV4_OoLR|pgHc&9$LW=1rwMzkt?;b4qO%LH{FQjc2ml#wArb%p diff --git a/assets/cubyz/sbb/mushroom/big/glimmergill/cap/1.blp b/assets/cubyz/sbb/mushroom/big/glimmergill/cap/1.blp deleted file mode 100644 index 46749ea3efb9bc490704e874b84d68895d26cd8e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 106 zcmZQz00V0VW(HOuWJyj)c;KbyyK2oQt<&dy5)%>xT0dMWHYzR-?!IJPT=ZzNFt>z+ z1dD>uQBTibKV4_OoLR~9gHc&(wqU=F-QFE%oWzww?Kun{8gx&nE3vHk#ko^dcETfZ H5e5bT3t}Y- diff --git a/assets/cubyz/sbb/mushroom/big/glimmergill/cap/2.blp b/assets/cubyz/sbb/mushroom/big/glimmergill/cap/2.blp deleted file mode 100644 index 4166b1a9c08315f463f914d8edcf147d5393c6ba..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 131 zcmZQz0D}SsRt7c(W(L;egoFoPdcLdHY|=V?-X}33L7?@+rDCJv;^6K}#>GXCCJS>* zNJyv{s7~q<`aH=P$YxO}I_l~9>!<6?moqClnu|VN{yOoC!2%{XHXnyw657ndQ~Y(9^ZKWJ&YuB^xpt_gr#xHoVtRVYv?WFk H49W}uk@FG= diff --git a/assets/cubyz/sbb/mushroom/big/glimmergill/empty.zig.zon b/assets/cubyz/sbb/mushroom/big/glimmergill/empty.zig.zon deleted file mode 100644 index 6dd99ebb..00000000 --- a/assets/cubyz/sbb/mushroom/big/glimmergill/empty.zig.zon +++ /dev/null @@ -1,8 +0,0 @@ -.{ - .blueprint = "cubyz:mushroom/big/glimmergill/empty", - .children = .{ - .white = .{ - .{.structure = null}, - }, - }, -} diff --git a/assets/cubyz/sbb/mushroom/big/glimmergill/split.blp b/assets/cubyz/sbb/mushroom/big/glimmergill/split.blp deleted file mode 100644 index 4d7ba0d6c20bd3ecde5f090b03a4f9a3fd41d3a6..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 135 zcmV;20C@iZ00000004;q1^@&A0{{etjLizdFc1c(wLRFA7s0pa-ItLjEy=>Rk@$x` zy`W+&2A$J>%&N+LvYGNt(A p!_IblVDl|Z>?Z5UQBzP-0A<$CSlN&VVY*3WN#wRa&1Kyv^9 diff --git a/assets/cubyz/sbb/mushroom/big/glimmergill/split.zig.zon b/assets/cubyz/sbb/mushroom/big/glimmergill/split.zig.zon deleted file mode 100644 index 2e295775..00000000 --- a/assets/cubyz/sbb/mushroom/big/glimmergill/split.zig.zon +++ /dev/null @@ -1,9 +0,0 @@ -.{ - .blueprint = "cubyz:mushroom/big/glimmergill/split", - .children = .{ - .white = .{ - .{.structure = "cubyz:mushroom/big/glimmergill/stem_segment"}, - .{.structure = "cubyz:mushroom/big/glimmergill/cap"}, - }, - }, -} diff --git a/assets/cubyz/sbb/mushroom/big/glimmergill/stem_segment.blp b/assets/cubyz/sbb/mushroom/big/glimmergill/stem_segment.blp deleted file mode 100644 index be7c57f093d6dec0701d127bace3596a985b0282..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 83 zcmZQz00TD$W(GzeWKK><5b)6RUA1PDmY>(9^ZKWJ&YuB^wRSvxvi$Y(=PA#gEfZUs i{_Kf@ibL0AW254rFQ<)-yn`ei8fG?5Y;0`gWB>qgUmzC% diff --git a/assets/cubyz/sbb/mushroom/big/glimmergill/stem_segment.zig.zon b/assets/cubyz/sbb/mushroom/big/glimmergill/stem_segment.zig.zon deleted file mode 100644 index 624db6b1..00000000 --- a/assets/cubyz/sbb/mushroom/big/glimmergill/stem_segment.zig.zon +++ /dev/null @@ -1,9 +0,0 @@ -.{ - .blueprint = "cubyz:mushroom/big/glimmergill/stem_segment", - .children = .{ - .white = .{ - .{.structure = "cubyz:mushroom/big/glimmergill/stem_segment"}, - .{.structure = "cubyz:mushroom/big/glimmergill/cap"}, - }, - }, -} diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/base.blp b/assets/cubyz/sbb/mushroom/big/toadstool/base.blp deleted file mode 100644 index 1e870d6b85940a9b175de7f060af358d5e79fba3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 84 zcmZQz00S2WW(GzeWKB*;5b)6RUA1PDmY>(9^ZKWJ&YuB^wRJpwvi$Y*C+f>YrayW9 j+`zz~LurayddjmUFQ%ubOj}~qz+lX*EMsh7z{mgqc$gkp diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/base.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/base.zig.zon deleted file mode 100644 index 4745c830..00000000 --- a/assets/cubyz/sbb/mushroom/big/toadstool/base.zig.zon +++ /dev/null @@ -1,10 +0,0 @@ -.{ - .blueprint = "cubyz:mushroom/big/toadstool/base", - .children = .{ - .white = .{ - .{.structure = "cubyz:mushroom/big/toadstool/stem_segment"}, - .{.structure = "cubyz:mushroom/big/toadstool/cap"}, - .{.structure = "cubyz:mushroom/big/toadstool/split"}, - }, - }, -} diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/cap.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/cap.zig.zon deleted file mode 100644 index eb87a10c..00000000 --- a/assets/cubyz/sbb/mushroom/big/toadstool/cap.zig.zon +++ /dev/null @@ -1,10 +0,0 @@ -.{ - .blueprint = "cubyz:mushroom/big/toadstool/empty", - .children = .{ - .white = .{ - .{.structure = "cubyz:mushroom/big/toadstool/cap/0"}, - .{.structure = "cubyz:mushroom/big/toadstool/cap/1"}, - .{.structure = "cubyz:mushroom/big/toadstool/cap/2"}, - }, - }, -} diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/cap/0.blp b/assets/cubyz/sbb/mushroom/big/toadstool/cap/0.blp deleted file mode 100644 index d8adfce5e76542251c74c3cdad30ee229990b629..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 127 zcmZQz0D~+BRxo5vPDps*rRTe9%_gnW=Y0|r5(L^lczqHM?(+Whx%km!VQvWti6a+U zCwB>bo@5MUvnUuH_4NGp({<*{nUx&QMV~HzeP|_Nz^E*k6Z1;2MvhHQ=GVsAnGE6Q b&m1^&fN8q1gCYC;YLAWL(|>>bCC&fbo@5MUvnUuH_4NGp({<*{nUx&QMV~HzeP|_7!0aaUv*pX;u8#%=f(F9kvl|aG hxau1-D>HL58#8mqoMAYelXS;#-R%vGn-23a002V+G1~wD diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/cap/2.blp b/assets/cubyz/sbb/mushroom/big/toadstool/cap/2.blp deleted file mode 100644 index 08fcdba5cfd134dfd84e2b842602ba43e69d9bf9..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 141 zcmZQz0D~+BRt7c(W(L;egoFoPdcLdHY|=V?-X}33L7?q}*C*lNF7HpDiyuuE=9Z9< zIC7zNa+lEONyb1ni-OTnPtRXJU1z?WS;^sC^y%`~hgK2-4HFrK4Uz=a*Yr(o>^wNH rk+VJS&$EvQz6vJmZ?Z6EmS*O@`R-XtLSjN15Hrno+_jr?1v3KxL#sFR diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/empty.blp b/assets/cubyz/sbb/mushroom/big/toadstool/empty.blp deleted file mode 100644 index bc4ddb17438b6bdb70d84e91249f581756756b26..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 58 zcmZQz00UhHCI&_zWJ*p*5b)6RUA1PDmY>(9^ZKWJ&YuB^xpt_gr#xHoVtRVYv?WFk H49W}uk@FG= diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/empty.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/empty.zig.zon deleted file mode 100644 index 540d49be..00000000 --- a/assets/cubyz/sbb/mushroom/big/toadstool/empty.zig.zon +++ /dev/null @@ -1,8 +0,0 @@ -.{ - .blueprint = "cubyz:mushroom/big/toadstool/empty", - .children = .{ - .white = .{ - .{.structure = null}, - }, - }, -} diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/split.blp b/assets/cubyz/sbb/mushroom/big/toadstool/split.blp deleted file mode 100644 index 46e1670b9c3fb9c4b2e8d8bfef04b36658c0a5f5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 151 zcmV;I0BHXJ00000004sk1^@*B0{{h$jZLb;Fc?Ko{~kPXAc$_Gb0;oEnnapF=qGJd zboGLTMzpn_S#Hj~AF$A8b-V8_;ta6vUqLF<1rdMH)d|?X$EvLwZGlz)(uT4; z5ifN)G=NQ1wRPT<5b)6RUA1PDmY>(9^ZKWJ&YuB^wRJpwvi$Y*C+f>YrayW9 i+`zz~LurayddjmUFQ%ubOj}~qz+lX*%*@Oz%m4saxE;d) diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/stem_segment.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/stem_segment.zig.zon deleted file mode 100644 index f309798f..00000000 --- a/assets/cubyz/sbb/mushroom/big/toadstool/stem_segment.zig.zon +++ /dev/null @@ -1,9 +0,0 @@ -.{ - .blueprint = "cubyz:mushroom/big/toadstool/stem_segment", - .children = .{ - .white = .{ - .{.structure = "cubyz:mushroom/big/toadstool/stem_segment"}, - .{.structure = "cubyz:mushroom/big/toadstool/cap"}, - }, - }, -} From c90c464899f9cb1ec46af25e90d07c0ff5bf7736 Mon Sep 17 00:00:00 2001 From: codemob-dev <69110900+codemob-dev@users.noreply.github.com> Date: Fri, 25 Jul 2025 17:34:27 -0400 Subject: [PATCH 08/15] better boletes --- assets/cubyz/biomes/cave/bolete_big.zig.zon | 8 ++++---- assets/cubyz/sbb/mushroom/big/bolete/base.blp | Bin 77 -> 0 bytes .../cubyz/sbb/mushroom/big/bolete/base.zig.zon | 10 ++++++---- assets/cubyz/sbb/mushroom/big/bolete/base/0.blp | Bin 0 -> 133 bytes .../sbb/mushroom/big/bolete/base/0.zig.zon | 8 ++++++++ assets/cubyz/sbb/mushroom/big/bolete/base/1.blp | Bin 0 -> 124 bytes .../sbb/mushroom/big/bolete/base/1.zig.zon | 8 ++++++++ assets/cubyz/sbb/mushroom/big/bolete/base/2.blp | Bin 0 -> 140 bytes .../sbb/mushroom/big/bolete/base/2.zig.zon | 8 ++++++++ assets/cubyz/sbb/mushroom/big/bolete/base/3.blp | Bin 0 -> 155 bytes .../sbb/mushroom/big/bolete/base/3.zig.zon | 8 ++++++++ assets/cubyz/sbb/mushroom/big/bolete/base/4.blp | Bin 0 -> 165 bytes .../sbb/mushroom/big/bolete/base/4.zig.zon | 8 ++++++++ .../cubyz/sbb/mushroom/big/bolete/cap.zig.zon | 2 ++ assets/cubyz/sbb/mushroom/big/bolete/cap/0.blp | Bin 76 -> 133 bytes assets/cubyz/sbb/mushroom/big/bolete/cap/1.blp | Bin 85 -> 150 bytes assets/cubyz/sbb/mushroom/big/bolete/cap/2.blp | Bin 117 -> 165 bytes assets/cubyz/sbb/mushroom/big/bolete/cap/3.blp | Bin 0 -> 138 bytes assets/cubyz/sbb/mushroom/big/bolete/cap/4.blp | Bin 0 -> 120 bytes assets/cubyz/sbb/mushroom/big/bolete/split.blp | Bin 140 -> 0 bytes .../cubyz/sbb/mushroom/big/bolete/split.zig.zon | 9 --------- .../sbb/mushroom/big/bolete/stem_segment.blp | Bin 76 -> 0 bytes .../mushroom/big/bolete/stem_segment.zig.zon | 9 --------- 23 files changed, 52 insertions(+), 26 deletions(-) delete mode 100644 assets/cubyz/sbb/mushroom/big/bolete/base.blp create mode 100644 assets/cubyz/sbb/mushroom/big/bolete/base/0.blp create mode 100644 assets/cubyz/sbb/mushroom/big/bolete/base/0.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/big/bolete/base/1.blp create mode 100644 assets/cubyz/sbb/mushroom/big/bolete/base/1.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/big/bolete/base/2.blp create mode 100644 assets/cubyz/sbb/mushroom/big/bolete/base/2.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/big/bolete/base/3.blp create mode 100644 assets/cubyz/sbb/mushroom/big/bolete/base/3.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/big/bolete/base/4.blp create mode 100644 assets/cubyz/sbb/mushroom/big/bolete/base/4.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/big/bolete/cap/3.blp create mode 100644 assets/cubyz/sbb/mushroom/big/bolete/cap/4.blp delete mode 100644 assets/cubyz/sbb/mushroom/big/bolete/split.blp delete mode 100644 assets/cubyz/sbb/mushroom/big/bolete/split.zig.zon delete mode 100644 assets/cubyz/sbb/mushroom/big/bolete/stem_segment.blp delete mode 100644 assets/cubyz/sbb/mushroom/big/bolete/stem_segment.zig.zon diff --git a/assets/cubyz/biomes/cave/bolete_big.zig.zon b/assets/cubyz/biomes/cave/bolete_big.zig.zon index ab0f8eff..df6e93c6 100644 --- a/assets/cubyz/biomes/cave/bolete_big.zig.zon +++ b/assets/cubyz/biomes/cave/bolete_big.zig.zon @@ -3,9 +3,9 @@ .maxHeight = -512, .minHeight = -48250, - .chance = 0.15, + .chance = 0.22, - .caves = -0.05, + .caves = -0.015, .music = "cubyz:la_kubisa_caverna", .stoneBlock = "cubyz:stone", @@ -26,12 +26,12 @@ .id = "cubyz:sbb", .structure = "cubyz:mushroom/big/bolete/base", .placeMode = .degradable, - .chance = 0.2, + .chance = 0.15, }, .{ .id = "cubyz:flower_patch", .block = "cubyz:bolete", - .chance = 0.15, + .chance = 0.1, .width = 8, .variation = 4, .density = 0.06, diff --git a/assets/cubyz/sbb/mushroom/big/bolete/base.blp b/assets/cubyz/sbb/mushroom/big/bolete/base.blp deleted file mode 100644 index f1cebc6cc4753c40f6f4a7bbd8df3e5ed7c47731..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 77 zcmZQz00Tz`W(GzeWJ^v+5b)6RUA1PDmY>(9^ZKWJ&Ywwc=zjWS`D^v3&zDSFVq{>@ ep>#zxJ>}Vw7t_;Inp7nuW=Ki|8Za{pGXMapCmS{Z diff --git a/assets/cubyz/sbb/mushroom/big/bolete/base.zig.zon b/assets/cubyz/sbb/mushroom/big/bolete/base.zig.zon index ec4dfaf5..c2f815ce 100644 --- a/assets/cubyz/sbb/mushroom/big/bolete/base.zig.zon +++ b/assets/cubyz/sbb/mushroom/big/bolete/base.zig.zon @@ -1,10 +1,12 @@ .{ - .blueprint = "cubyz:mushroom/big/bolete/base", + .blueprint = "cubyz:mushroom/big/bolete/empty", .children = .{ .white = .{ - .{.structure = "cubyz:mushroom/big/bolete/stem_segment"}, - .{.structure = "cubyz:mushroom/big/bolete/cap"}, - .{.structure = "cubyz:mushroom/big/bolete/split"}, + .{.structure = "cubyz:mushroom/big/bolete/base/0"}, + .{.structure = "cubyz:mushroom/big/bolete/base/1"}, + .{.structure = "cubyz:mushroom/big/bolete/base/2"}, + .{.structure = "cubyz:mushroom/big/bolete/base/3"}, + .{.structure = "cubyz:mushroom/big/bolete/base/4"}, }, }, } diff --git a/assets/cubyz/sbb/mushroom/big/bolete/base/0.blp b/assets/cubyz/sbb/mushroom/big/bolete/base/0.blp new file mode 100644 index 0000000000000000000000000000000000000000..d8d0d53a0efcdc92975c7e5a96c0b4362316f555 GIT binary patch literal 133 zcmZQz00Vyp76w)zWJ^v+c;KbyyK2oQt<&dy5)%>x8a@<#y8LzWr{W;*Ai<=go}Ryc zy3Tw#vyz90XA#H7Cp~B8i2VK3x8a@<#y8LzWr{W;*Ai<=go}Ryc zy3Tw#vyz90XA#H7Cp~B8i2VK3*{@W bv@&=)qi~hFX->h;`2iLewD?w}m@xnVAHgt+ literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/big/bolete/base/1.zig.zon b/assets/cubyz/sbb/mushroom/big/bolete/base/1.zig.zon new file mode 100644 index 00000000..adb9a45e --- /dev/null +++ b/assets/cubyz/sbb/mushroom/big/bolete/base/1.zig.zon @@ -0,0 +1,8 @@ +.{ + .blueprint = "cubyz:mushroom/big/bolete/base/1", + .children = .{ + .white = .{ + .{.structure = "cubyz:mushroom/big/bolete/cap"}, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/big/bolete/base/2.blp b/assets/cubyz/sbb/mushroom/big/bolete/base/2.blp new file mode 100644 index 0000000000000000000000000000000000000000..229ad8a40fd17b460e8827e6cc4dae476c0c1738 GIT binary patch literal 140 zcmZQz00Vyp76vv3RtC1@goFoPdcLdHY|=V?-X}33L7?G7(WlE_Cx0pq@(z-ekZ@5< zI_l~9>!jpNOU++TC1)mZGPbzX1*TP{$uaM2nAs@UGgCqWsBXpyGj{2Omf78z^2TD8 rF;yOnJI)+URkz!oz`WziL$hYd<$G^jnf$6e=&rNpji5(zLW~RmYd1B8 literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/big/bolete/base/2.zig.zon b/assets/cubyz/sbb/mushroom/big/bolete/base/2.zig.zon new file mode 100644 index 00000000..a241d7e3 --- /dev/null +++ b/assets/cubyz/sbb/mushroom/big/bolete/base/2.zig.zon @@ -0,0 +1,8 @@ +.{ + .blueprint = "cubyz:mushroom/big/bolete/base/2", + .children = .{ + .white = .{ + .{.structure = "cubyz:mushroom/big/bolete/cap"}, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/big/bolete/base/3.blp b/assets/cubyz/sbb/mushroom/big/bolete/base/3.blp new file mode 100644 index 0000000000000000000000000000000000000000..1739d6dc855f6be6b99ffa0f06fae705c4db2d60 GIT binary patch literal 155 zcmV;M0A&9F00000002(_1ONp92LK0SU|`@%E={VevMS5ZOkrSP5PEjNb|Qfu3m*8^C8j JKKGI7ZU6)Vz literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/big/bolete/base/3.zig.zon b/assets/cubyz/sbb/mushroom/big/bolete/base/3.zig.zon new file mode 100644 index 00000000..22f066d0 --- /dev/null +++ b/assets/cubyz/sbb/mushroom/big/bolete/base/3.zig.zon @@ -0,0 +1,8 @@ +.{ + .blueprint = "cubyz:mushroom/big/bolete/base/3", + .children = .{ + .white = .{ + .{.structure = "cubyz:mushroom/big/bolete/cap"}, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/big/bolete/base/4.blp b/assets/cubyz/sbb/mushroom/big/bolete/base/4.blp new file mode 100644 index 0000000000000000000000000000000000000000..726d23caa589ea02231ce0fa594789df96797234 GIT binary patch literal 165 zcmZQz0D~9?Rxo5wPDps*rRTe9%_gnW=Y0|r5(FAP6n(niBRlhkY1>-U#8{C8N5-FUKKclE@#&RZw9Hp+V1?z*|9 P!@j2O`LW0LHVg~^sGdaT literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/big/bolete/base/4.zig.zon b/assets/cubyz/sbb/mushroom/big/bolete/base/4.zig.zon new file mode 100644 index 00000000..fe05c9fc --- /dev/null +++ b/assets/cubyz/sbb/mushroom/big/bolete/base/4.zig.zon @@ -0,0 +1,8 @@ +.{ + .blueprint = "cubyz:mushroom/big/bolete/base/4", + .children = .{ + .white = .{ + .{.structure = "cubyz:mushroom/big/bolete/cap"}, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/big/bolete/cap.zig.zon b/assets/cubyz/sbb/mushroom/big/bolete/cap.zig.zon index ff30783b..0afd81c0 100644 --- a/assets/cubyz/sbb/mushroom/big/bolete/cap.zig.zon +++ b/assets/cubyz/sbb/mushroom/big/bolete/cap.zig.zon @@ -5,6 +5,8 @@ .{.structure = "cubyz:mushroom/big/bolete/cap/0"}, .{.structure = "cubyz:mushroom/big/bolete/cap/1"}, .{.structure = "cubyz:mushroom/big/bolete/cap/2"}, + .{.structure = "cubyz:mushroom/big/bolete/cap/3"}, + .{.structure = "cubyz:mushroom/big/bolete/cap/4"}, }, }, } diff --git a/assets/cubyz/sbb/mushroom/big/bolete/cap/0.blp b/assets/cubyz/sbb/mushroom/big/bolete/cap/0.blp index ab14678942f0e4d78fbe1692a952e002d5f74caa..4a88ae806b20b6729d7be0d1cf612b317dcd31ef 100644 GIT binary patch delta 111 zcmeZiWfWk5fJ6pXFl3o1AQvtnA<+_eWKx&V=Sju_Ufq)?efivNblLc`K$7Lpm%jv_ z^6X$#?yULq%T!`Uz>$gzKbSIV-h5L$!t>zOOi2mJ2#Fbz5d|lbulMKe<6`{YDNrI` K_g`4DjsXA@{wmY} delta 54 zcmZo=^bufy05b+=2389Cr|qFx!dTn@n?Y~%bzcQ z2|VRF!t5sWa|u(4`r4Wlk6A)y~#Iu delta 63 zcmbQn7%IR30cH%$46H!NJW)VST_EYGr{}Mqt}|cGtmL`Ds4SQh^Qp&W!^fFtU0S5P O-W+*emXl+_zyJX7(-g4) diff --git a/assets/cubyz/sbb/mushroom/big/bolete/cap/2.blp b/assets/cubyz/sbb/mushroom/big/bolete/cap/2.blp index 96fa5bb58b90b13ac78266380939e6f1f4c01d69..c0f8feaa7a9bd9687b0d0d4466dfdcf0b6277b9f 100644 GIT binary patch delta 110 zcmXS2$|%490f`K(4D3M2I#IwrYzecQ(vb}-7qU5+PH%7QTp(d)x@0$h=w1b8;bx&( zJEdH9xH5H1F;BYNuGyZ)w(9o`$r+Ln5-k!DA66{vi{3DErIX8!jsVpdj@|urFI!8t LCyFbdj$;4-`JEQvM{%VghWf=kx5-b zpC=g$cy&*n^yPE6(PiV$0!fxXU;Yw!%Cmz}SQvM{%VghWf=kx5-b zpC=g$cy&*n^yPE6(PiV$0!fxXU;Yw!%JYL!na?cos|}A&!9Ert>FG1s3QW)N`0(fy USTZYpS*5V@;lY*jlI)on0LL3G1^@s6 literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/big/bolete/split.blp b/assets/cubyz/sbb/mushroom/big/bolete/split.blp deleted file mode 100644 index 9ba32132f839d82576dbe9fc19ff70eed16d0f4e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 140 zcmV;70CWEU00000004Rb1^@*B0{{h$j7tiGFcd{kv<@mA2&L=DyqhT|ig^%Bu|L|? z7tBCHgZ0kdx%WJvwh#0EoS#8Dpoy0cgEqnU_Z~P!b~8p>C%)4!Cv(v(MVMreabZ!u u*!Bt>6K1A%w2rk@C<+u%tnSj3lql-i+nQZ+9jJa-ZkOBav+kB(f7usNh&;*w diff --git a/assets/cubyz/sbb/mushroom/big/bolete/split.zig.zon b/assets/cubyz/sbb/mushroom/big/bolete/split.zig.zon deleted file mode 100644 index 61a9025e..00000000 --- a/assets/cubyz/sbb/mushroom/big/bolete/split.zig.zon +++ /dev/null @@ -1,9 +0,0 @@ -.{ - .blueprint = "cubyz:mushroom/big/bolete/split", - .children = .{ - .white = .{ - .{.structure = "cubyz:mushroom/big/bolete/stem_segment"}, - .{.structure = "cubyz:mushroom/big/bolete/cap"}, - }, - }, -} diff --git a/assets/cubyz/sbb/mushroom/big/bolete/stem_segment.blp b/assets/cubyz/sbb/mushroom/big/bolete/stem_segment.blp deleted file mode 100644 index 4d7049d69868716a9501f893700a4af87d98ab5e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 76 zcmZQz00Tz`W(GzeWKK><5b)6RUA1PDmY>(9^ZKWJ&Ywwc=zjWS`D^v3&zDSFVq{>@ bp>#zxJ>}Vw7t_;Inp7nuW=Kj%0!an{ju;zy diff --git a/assets/cubyz/sbb/mushroom/big/bolete/stem_segment.zig.zon b/assets/cubyz/sbb/mushroom/big/bolete/stem_segment.zig.zon deleted file mode 100644 index c055d06a..00000000 --- a/assets/cubyz/sbb/mushroom/big/bolete/stem_segment.zig.zon +++ /dev/null @@ -1,9 +0,0 @@ -.{ - .blueprint = "cubyz:mushroom/big/bolete/stem_segment", - .children = .{ - .white = .{ - .{.structure = "cubyz:mushroom/big/bolete/stem_segment"}, - .{.structure = "cubyz:mushroom/big/bolete/cap"}, - }, - }, -} From 612cbbd503fcd1da43485e1ef953a5cf21d07094 Mon Sep 17 00:00:00 2001 From: codemob-dev <69110900+codemob-dev@users.noreply.github.com> Date: Fri, 25 Jul 2025 18:00:59 -0400 Subject: [PATCH 09/15] Add small bolete mushrooms --- assets/cubyz/biomes/cave/bolete_big.zig.zon | 6 ++++++ .../sbb/mushroom/small/bolete/base.zig.zon | 17 +++++++++++++++++ .../cubyz/sbb/mushroom/small/bolete/empty.blp | Bin 0 -> 58 bytes .../sbb/mushroom/small/bolete/empty.zig.zon | 8 ++++++++ .../sbb/mushroom/small/bolete/variant/0.blp | Bin 0 -> 86 bytes .../sbb/mushroom/small/bolete/variant/1.blp | Bin 0 -> 86 bytes .../sbb/mushroom/small/bolete/variant/2.blp | Bin 0 -> 101 bytes .../sbb/mushroom/small/bolete/variant/3.blp | Bin 0 -> 108 bytes .../sbb/mushroom/small/bolete/variant/4.blp | Bin 0 -> 112 bytes .../sbb/mushroom/small/bolete/variant/5.blp | Bin 0 -> 74 bytes .../sbb/mushroom/small/bolete/variant/6.blp | Bin 0 -> 91 bytes .../sbb/mushroom/small/bolete/variant/7.blp | Bin 0 -> 100 bytes 12 files changed, 31 insertions(+) create mode 100644 assets/cubyz/sbb/mushroom/small/bolete/base.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/small/bolete/empty.blp create mode 100644 assets/cubyz/sbb/mushroom/small/bolete/empty.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/small/bolete/variant/0.blp create mode 100644 assets/cubyz/sbb/mushroom/small/bolete/variant/1.blp create mode 100644 assets/cubyz/sbb/mushroom/small/bolete/variant/2.blp create mode 100644 assets/cubyz/sbb/mushroom/small/bolete/variant/3.blp create mode 100644 assets/cubyz/sbb/mushroom/small/bolete/variant/4.blp create mode 100644 assets/cubyz/sbb/mushroom/small/bolete/variant/5.blp create mode 100644 assets/cubyz/sbb/mushroom/small/bolete/variant/6.blp create mode 100644 assets/cubyz/sbb/mushroom/small/bolete/variant/7.blp diff --git a/assets/cubyz/biomes/cave/bolete_big.zig.zon b/assets/cubyz/biomes/cave/bolete_big.zig.zon index df6e93c6..df50bfee 100644 --- a/assets/cubyz/biomes/cave/bolete_big.zig.zon +++ b/assets/cubyz/biomes/cave/bolete_big.zig.zon @@ -28,6 +28,12 @@ .placeMode = .degradable, .chance = 0.15, }, + .{ + .id = "cubyz:sbb", + .structure = "cubyz:mushroom/small/bolete/base", + .placeMode = .degradable, + .chance = 0.2, + }, .{ .id = "cubyz:flower_patch", .block = "cubyz:bolete", diff --git a/assets/cubyz/sbb/mushroom/small/bolete/base.zig.zon b/assets/cubyz/sbb/mushroom/small/bolete/base.zig.zon new file mode 100644 index 00000000..17f7ab6a --- /dev/null +++ b/assets/cubyz/sbb/mushroom/small/bolete/base.zig.zon @@ -0,0 +1,17 @@ +.{ + .blueprint = "cubyz:mushroom/small/bolete/empty", + .children = .{ + .white = .{ + .{.structure = "cubyz:mushroom/small/bolete/variant/0"}, + .{.structure = "cubyz:mushroom/small/bolete/variant/1"}, + .{.structure = "cubyz:mushroom/small/bolete/variant/2"}, + .{.structure = "cubyz:mushroom/small/bolete/variant/3"}, + .{.structure = "cubyz:mushroom/small/bolete/variant/4"}, + .{.structure = "cubyz:mushroom/small/bolete/variant/5"}, + .{.structure = "cubyz:mushroom/small/bolete/variant/6"}, + .{.structure = "cubyz:mushroom/small/bolete/variant/7"}, + .{.structure = "cubyz:mushroom/small/bolete/variant/8"}, + .{.structure = "cubyz:mushroom/small/bolete/variant/9"}, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/small/bolete/empty.blp b/assets/cubyz/sbb/mushroom/small/bolete/empty.blp new file mode 100644 index 0000000000000000000000000000000000000000..bc4ddb17438b6bdb70d84e91249f581756756b26 GIT binary patch literal 58 zcmZQz00UhHCI&_zWJ*p*5b)6RUA1PDmY>(9^ZKWJ&YuB^xpt_gr#xHoVtRVYv?WFk H49W}uk@FG= literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/small/bolete/empty.zig.zon b/assets/cubyz/sbb/mushroom/small/bolete/empty.zig.zon new file mode 100644 index 00000000..10768d22 --- /dev/null +++ b/assets/cubyz/sbb/mushroom/small/bolete/empty.zig.zon @@ -0,0 +1,8 @@ +.{ + .blueprint = "cubyz:mushroom/big/bolete/empty", + .children = .{ + .white = .{ + .{.structure = null}, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/small/bolete/variant/0.blp b/assets/cubyz/sbb/mushroom/small/bolete/variant/0.blp new file mode 100644 index 0000000000000000000000000000000000000000..842a926d9abf79e0625d114a4dbcb9711181097e GIT binary patch literal 86 zcmZQz0E1u#76wKjWJyj)5b)6RUA1PDmY>(9^ZKWJ&Ywwc=zjWS`D^v3&zDSFVq{>z m;e15l&yOXGj_i5D(-O3zpeTuvnZv-)z{tQDNE#S0GXMb6=pKv! literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/small/bolete/variant/1.blp b/assets/cubyz/sbb/mushroom/small/bolete/variant/1.blp new file mode 100644 index 0000000000000000000000000000000000000000..c53a6a52f7467954bbc3b7394193e178c97206fa GIT binary patch literal 86 zcmZQz0E1u#76wKjWKB*;5b)6RUA1PDmY>(9^ZKWJ&Ywwc=zjWS`D^v3&zDSFVq{>z n;e15l&yOXGj_i5D(-O3zpeTuvnZv-)z{tSZpwW<-*_Z(U)Hxos literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/small/bolete/variant/2.blp b/assets/cubyz/sbb/mushroom/small/bolete/variant/2.blp new file mode 100644 index 0000000000000000000000000000000000000000..788098aa98935614e1919daaad04d922c3a6f436 GIT binary patch literal 101 zcmZQz0E0vZRt6>pMh2GTgaiQ(J>OMpHfi~JT{^FS%IEx<IyYe z!4l9iS(sZO>8PjYub-|nU(T%L*f{4;No_|In?yotLP|nHLec@2Gdw;#Iy^NAm3JJN KeB%U@(uO>AB literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/small/bolete/variant/4.blp b/assets/cubyz/sbb/mushroom/small/bolete/variant/4.blp new file mode 100644 index 0000000000000000000000000000000000000000..0507b53ce563f359074f8639c60e3205abced2a0 GIT binary patch literal 112 zcmZQz0E0vZRt9DUCI;5zgoFoPdcLdHY|=V?-X}33L7?r!q)){`-a(HicL{x-WGo>e z!4l9iS(sZO>8PjYub-|nU(T%L*f{4;No_|ITTR2%#)*wHfw-}evz;rAO^r>A&2EEK Nh(d?!d^RUp1^`{JC?x;@ literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/small/bolete/variant/5.blp b/assets/cubyz/sbb/mushroom/small/bolete/variant/5.blp new file mode 100644 index 0000000000000000000000000000000000000000..8dde2de0b726e1babe4da03fdbb0e7dee31835a4 GIT binary patch literal 74 zcmZQz00VmlW(GzeWKK><5b)6RUA1PDmY>(9^ZKWJ&YuB^wRNaIeZFMcl4I(ks?Su@ Y4Gv6oYMm_1E#c5GvvFc$Vx8a_<=R2<|T^mwu`w?NWSPtRXJ sU1z?WS;?_+&YzOnjwm*kgcJwXo{Xd&Pi9I;NX|GY5NvDsEAR;;09I2XP5=M^ literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/small/bolete/variant/7.blp b/assets/cubyz/sbb/mushroom/small/bolete/variant/7.blp new file mode 100644 index 0000000000000000000000000000000000000000..a72e8fceb7cfefeb625cd9f4da47c497e541b506 GIT binary patch literal 100 zcmZQz0E0vZRt9DuWKB*;c;KbyyK2oQt<&dy5)%>x8a_<=R2<|T^mwu`w?NWSPtRXJ zU1z?WS;?_+&YzOnjwm)ZwnUM=p01shCnb4iG)#0dRAW Date: Sat, 26 Jul 2025 14:45:33 -0400 Subject: [PATCH 10/15] Add very rare snale base mushrooms --- assets/cubyz/sbb/mushroom/big/bolete/base.zig.zon | 11 ++++++----- assets/cubyz/sbb/mushroom/big/bolete/base/5.blp | Bin 0 -> 197 bytes .../cubyz/sbb/mushroom/big/bolete/base/5.zig.zon | 8 ++++++++ 3 files changed, 14 insertions(+), 5 deletions(-) create mode 100644 assets/cubyz/sbb/mushroom/big/bolete/base/5.blp create mode 100644 assets/cubyz/sbb/mushroom/big/bolete/base/5.zig.zon diff --git a/assets/cubyz/sbb/mushroom/big/bolete/base.zig.zon b/assets/cubyz/sbb/mushroom/big/bolete/base.zig.zon index c2f815ce..6783f3e6 100644 --- a/assets/cubyz/sbb/mushroom/big/bolete/base.zig.zon +++ b/assets/cubyz/sbb/mushroom/big/bolete/base.zig.zon @@ -2,11 +2,12 @@ .blueprint = "cubyz:mushroom/big/bolete/empty", .children = .{ .white = .{ - .{.structure = "cubyz:mushroom/big/bolete/base/0"}, - .{.structure = "cubyz:mushroom/big/bolete/base/1"}, - .{.structure = "cubyz:mushroom/big/bolete/base/2"}, - .{.structure = "cubyz:mushroom/big/bolete/base/3"}, - .{.structure = "cubyz:mushroom/big/bolete/base/4"}, + .{.structure = "cubyz:mushroom/big/bolete/base/0", .chance = 1}, + .{.structure = "cubyz:mushroom/big/bolete/base/1", .chance = 1}, + .{.structure = "cubyz:mushroom/big/bolete/base/2", .chance = 1}, + .{.structure = "cubyz:mushroom/big/bolete/base/3", .chance = 1}, + .{.structure = "cubyz:mushroom/big/bolete/base/4", .chance = 1}, + .{.structure = "cubyz:mushroom/big/bolete/base/5", .chance = 0.15}, }, }, } diff --git a/assets/cubyz/sbb/mushroom/big/bolete/base/5.blp b/assets/cubyz/sbb/mushroom/big/bolete/base/5.blp new file mode 100644 index 0000000000000000000000000000000000000000..f310c6468f46f25733619a315771536b782c66ed GIT binary patch literal 197 zcmV;$06PBw000000055w2ml2D1po)Nk9O zvw5gz@6()zU&gSSaAwYH>)bE*voX>(CU5Q=f9G^(glOcSXaD2 Date: Sat, 26 Jul 2025 14:50:35 -0400 Subject: [PATCH 11/15] Fix small variants --- assets/cubyz/sbb/mushroom/small/bolete/base.zig.zon | 2 -- 1 file changed, 2 deletions(-) diff --git a/assets/cubyz/sbb/mushroom/small/bolete/base.zig.zon b/assets/cubyz/sbb/mushroom/small/bolete/base.zig.zon index 17f7ab6a..2e3397be 100644 --- a/assets/cubyz/sbb/mushroom/small/bolete/base.zig.zon +++ b/assets/cubyz/sbb/mushroom/small/bolete/base.zig.zon @@ -10,8 +10,6 @@ .{.structure = "cubyz:mushroom/small/bolete/variant/5"}, .{.structure = "cubyz:mushroom/small/bolete/variant/6"}, .{.structure = "cubyz:mushroom/small/bolete/variant/7"}, - .{.structure = "cubyz:mushroom/small/bolete/variant/8"}, - .{.structure = "cubyz:mushroom/small/bolete/variant/9"}, }, }, } From 29070943c8e75d030ec9084d4cb4107fb1076ff5 Mon Sep 17 00:00:00 2001 From: codemob-dev <69110900+codemob-dev@users.noreply.github.com> Date: Sat, 26 Jul 2025 16:30:08 -0400 Subject: [PATCH 12/15] Improve bases --- .../cubyz/sbb/mushroom/big/bolete/base.zig.zon | 3 +-- assets/cubyz/sbb/mushroom/big/bolete/base/0.blp | Bin 133 -> 123 bytes assets/cubyz/sbb/mushroom/big/bolete/base/1.blp | Bin 124 -> 119 bytes assets/cubyz/sbb/mushroom/big/bolete/base/2.blp | Bin 140 -> 134 bytes assets/cubyz/sbb/mushroom/big/bolete/base/3.blp | Bin 155 -> 144 bytes assets/cubyz/sbb/mushroom/big/bolete/base/4.blp | Bin 165 -> 190 bytes assets/cubyz/sbb/mushroom/big/bolete/base/5.blp | Bin 197 -> 0 bytes .../sbb/mushroom/big/bolete/base/5.zig.zon | 8 -------- 8 files changed, 1 insertion(+), 10 deletions(-) delete mode 100644 assets/cubyz/sbb/mushroom/big/bolete/base/5.blp delete mode 100644 assets/cubyz/sbb/mushroom/big/bolete/base/5.zig.zon diff --git a/assets/cubyz/sbb/mushroom/big/bolete/base.zig.zon b/assets/cubyz/sbb/mushroom/big/bolete/base.zig.zon index 6783f3e6..e976ec09 100644 --- a/assets/cubyz/sbb/mushroom/big/bolete/base.zig.zon +++ b/assets/cubyz/sbb/mushroom/big/bolete/base.zig.zon @@ -6,8 +6,7 @@ .{.structure = "cubyz:mushroom/big/bolete/base/1", .chance = 1}, .{.structure = "cubyz:mushroom/big/bolete/base/2", .chance = 1}, .{.structure = "cubyz:mushroom/big/bolete/base/3", .chance = 1}, - .{.structure = "cubyz:mushroom/big/bolete/base/4", .chance = 1}, - .{.structure = "cubyz:mushroom/big/bolete/base/5", .chance = 0.15}, + .{.structure = "cubyz:mushroom/big/bolete/base/4", .chance = 0.1}, }, }, } diff --git a/assets/cubyz/sbb/mushroom/big/bolete/base/0.blp b/assets/cubyz/sbb/mushroom/big/bolete/base/0.blp index d8d0d53a0efcdc92975c7e5a96c0b4362316f555..0a4f663412de47363628b3d00c4ee8253fd823be 100644 GIT binary patch literal 123 zcmZQz00Vyp79eD1V4K==mg|s#K+FEM=Kgzs$n5-WaeG>t;*JOUzrHv%NvI0SM9i3* zFOgs!`{mz__`7KdI`N-OS1fx8a@<#y8LzWr{W;*Ai<=go}Ryc zy3Tw#vyz90XA#H7Cp~B8i2VK3h%imuru6SP<<|@9V^6to6SCJoKOb?zMaWZ_wS_B?ka}$2`0M literal 140 zcmZQz00Vyp76vv3RtC1@goFoPdcLdHY|=V?-X}33L7?G7(WlE_Cx0pq@(z-ekZ@5< zI_l~9>!jpNOU++TC1)mZGPbzX1*TP{$uaM2nAs@UGgCqWsBXpyGj{2Omf78z^2TD8 rF;yOnJI)+URkz!oz`WziL$hYd<$G^jnf$6e=&rNpji5(zLW~RmYd1B8 diff --git a/assets/cubyz/sbb/mushroom/big/bolete/base/3.blp b/assets/cubyz/sbb/mushroom/big/bolete/base/3.blp index 1739d6dc855f6be6b99ffa0f06fae705c4db2d60..0cf5298cef38bd8ad80bfecde9201f8e23db231d 100644 GIT binary patch delta 88 zcmbQuIDt`s0RsFPSb&h7fo-CIqkWU1FtaiFg<)x10SOfBY} oO6Z&@hWXYTZ=dbCJom?$gHQS0R>){9J5g%C@}cLf`i)Es0N^SfI{*Lx delta 99 zcmbQhIGa&`0RsFPSQuCt*csR-3OITlG8AT3W@cs}I zr|dPq3V!y_t5dnJdxqufM5(kB4T73$1DHPCbnLm$`Ll6erl9nJbbGt+6JO>r008E^ BAy)tZ diff --git a/assets/cubyz/sbb/mushroom/big/bolete/base/4.blp b/assets/cubyz/sbb/mushroom/big/bolete/base/4.blp index 726d23caa589ea02231ce0fa594789df96797234..ddca64896b6791170e0cc78459dbf2a75389956c 100644 GIT binary patch literal 190 zcmV;v073r%00000004pj2LJ^C1po)Nk-^S_Fc5?X_drSin*{(HIf(n?cq3H;*xRn9x)9V>eKl)WAqvu}Rvm!cYCUP$0NB}f zBz+N8XQZu_&V%kwa*8?3F|tu@S&WS``SD7TL|KL;%DFkNxXg*g_=|=3(%jO%kjL$l s51u-&?2V`9{TH13=DrZK+P}&3eZGI*xx(7<``N$vf800AnfsV}0;KR?3jhEB literal 165 zcmZQz0D~9?Rxo5wPDps*rRTe9%_gnW=Y0|r5(FAP6n(niBRlhkY1>-U#8{C8N5-FUKKclE@#&RZw9Hp+V1?z*|9 P!@j2O`LW0LHVg~^sGdaT diff --git a/assets/cubyz/sbb/mushroom/big/bolete/base/5.blp b/assets/cubyz/sbb/mushroom/big/bolete/base/5.blp deleted file mode 100644 index f310c6468f46f25733619a315771536b782c66ed..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 197 zcmV;$06PBw000000055w2ml2D1po)Nk9O zvw5gz@6()zU&gSSaAwYH>)bE*voX>(CU5Q=f9G^(glOcSXaD2 Date: Sat, 26 Jul 2025 16:31:51 -0400 Subject: [PATCH 13/15] Improve caps --- assets/cubyz/sbb/mushroom/big/bolete/cap/0.blp | Bin 133 -> 100 bytes assets/cubyz/sbb/mushroom/big/bolete/cap/1.blp | Bin 150 -> 122 bytes assets/cubyz/sbb/mushroom/big/bolete/cap/2.blp | Bin 165 -> 123 bytes assets/cubyz/sbb/mushroom/big/bolete/cap/3.blp | Bin 138 -> 105 bytes assets/cubyz/sbb/mushroom/big/bolete/cap/4.blp | Bin 120 -> 96 bytes 5 files changed, 0 insertions(+), 0 deletions(-) diff --git a/assets/cubyz/sbb/mushroom/big/bolete/cap/0.blp b/assets/cubyz/sbb/mushroom/big/bolete/cap/0.blp index 4a88ae806b20b6729d7be0d1cf612b317dcd31ef..c3e3dca07bc9a3d9266ea3d09ef3b0389ecf793e 100644 GIT binary patch delta 72 zcmZo=OyOdH051lXiCijX0!c?bJ%9alo%wQRCCA1&e@bdQqS)>}z zM&-_$Kfg>RW&|9mxbTB1qvp*w#UnfqUd@!0kc^O+AsJC{BKdlM-aanI@0|iA@^$}( HCF>Xf4v;F? diff --git a/assets/cubyz/sbb/mushroom/big/bolete/cap/1.blp b/assets/cubyz/sbb/mushroom/big/bolete/cap/1.blp index b7094ee2e403b2d91eb40a217c8272c03e0587e1..ca830ad23337c2e5c46335249a8fd6d0bd1ea486 100644 GIT binary patch delta 94 zcmbQnSjEKv0bUF&6S-7;1d@(=dj9(9I`iesN{)?l{*=^qM6o?$RPL+^Vl?~w;bxdj9(9I`iesN{)?l{*=^qM6q3BR2EFSaV3CRAlcmT xo#NHn9an^t^|oG_@JeikgfO!)vvIQkvoY_XEQ3~V!*>eT<)W6P&w8rN000vXB3=Lh delta 137 zcmb2AAbdmh`W-!mj< pNJdDsNJM;Cv9K?C!_1XVE;~8`RAV@H_t(8_E!mzZu6#O<0RWh^Hc<2=dFv_DTF*GQ+bc eZia*~voNzUvof}z zMrAp>T{4M(rFeWal59L`I87|yJX_o)dEl#ov4PGx*sV05!iT>Hq)$ diff --git a/assets/cubyz/sbb/mushroom/big/bolete/cap/4.blp b/assets/cubyz/sbb/mushroom/big/bolete/cap/4.blp index 8d6822262b8e30d9d4d202677b97c28430435038..d8d8c32ec9935455fe475f955c2769d9eb85264f 100644 GIT binary patch delta 67 zcmb Date: Sat, 26 Jul 2025 16:36:40 -0400 Subject: [PATCH 14/15] Make home mushroom rarer --- assets/cubyz/sbb/mushroom/big/bolete/base.zig.zon | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/cubyz/sbb/mushroom/big/bolete/base.zig.zon b/assets/cubyz/sbb/mushroom/big/bolete/base.zig.zon index e976ec09..783f26b8 100644 --- a/assets/cubyz/sbb/mushroom/big/bolete/base.zig.zon +++ b/assets/cubyz/sbb/mushroom/big/bolete/base.zig.zon @@ -6,7 +6,7 @@ .{.structure = "cubyz:mushroom/big/bolete/base/1", .chance = 1}, .{.structure = "cubyz:mushroom/big/bolete/base/2", .chance = 1}, .{.structure = "cubyz:mushroom/big/bolete/base/3", .chance = 1}, - .{.structure = "cubyz:mushroom/big/bolete/base/4", .chance = 0.1}, + .{.structure = "cubyz:mushroom/big/bolete/base/4", .chance = 0.05}, }, }, } From 599bf1c9d7b6253560ed2865c501b95e960ca5f9 Mon Sep 17 00:00:00 2001 From: codemob-dev <69110900+codemob-dev@users.noreply.github.com> Date: Sat, 26 Jul 2025 16:40:54 -0400 Subject: [PATCH 15/15] Replace furnace with kiln --- assets/cubyz/sbb/mushroom/big/bolete/base/4.blp | Bin 190 -> 196 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/assets/cubyz/sbb/mushroom/big/bolete/base/4.blp b/assets/cubyz/sbb/mushroom/big/bolete/base/4.blp index ddca64896b6791170e0cc78459dbf2a75389956c..d659c930a89526b5e86e5d1255c5b3f334109b52 100644 GIT binary patch literal 196 zcmV;#06YHx00000004{t2ml2D1po)Nk-^S_Fc5@?^8XU$pckKmyKiHGz=nn<6(#!g zh86`$yLfR=-Th`~CdrSin*{(HIf(n?cq3H;*xRn9x)9V>eKl)WAqvu}Rvm!cYCUP$0NB}f zBz+N8XQZu_&V%kwa*8?3F|tu@S&WS``SD7TL|KL;%DFkNxXg*g_=|=3(%jO%kjL$l s51u-&?2V`9{TH13=DrZK+P}&3eZGI*xx(7<``N$vf800AnfsV}0;KR?3jhEB