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/17] 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/17] 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/17] 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/17] 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/17] 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/17] 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 76a70f1c3a55ce79e56b071888dea276aa30b1f2 Mon Sep 17 00:00:00 2001 From: codemob-dev <69110900+codemob-dev@users.noreply.github.com> Date: Wed, 23 Jul 2025 14:09:18 -0400 Subject: [PATCH 07/17] Removed other mushroom caves --- assets/cubyz/biomes/cave/bolete_big.zig.zon | 41 ------------------ .../cubyz/biomes/cave/glimmergill_big.zig.zon | 41 ------------------ assets/cubyz/sbb/mushroom/big/bolete/base.blp | Bin 77 -> 0 bytes .../sbb/mushroom/big/bolete/base.zig.zon | 10 ----- .../cubyz/sbb/mushroom/big/bolete/cap.zig.zon | 10 ----- .../cubyz/sbb/mushroom/big/bolete/cap/0.blp | Bin 76 -> 0 bytes .../cubyz/sbb/mushroom/big/bolete/cap/1.blp | Bin 85 -> 0 bytes .../cubyz/sbb/mushroom/big/bolete/cap/2.blp | Bin 117 -> 0 bytes .../cubyz/sbb/mushroom/big/bolete/empty.blp | Bin 58 -> 0 bytes .../sbb/mushroom/big/bolete/empty.zig.zon | 8 ---- .../cubyz/sbb/mushroom/big/bolete/split.blp | Bin 140 -> 0 bytes .../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 ---- .../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 ---- 26 files changed, 174 deletions(-) delete mode 100644 assets/cubyz/biomes/cave/bolete_big.zig.zon delete mode 100644 assets/cubyz/biomes/cave/glimmergill_big.zig.zon delete mode 100644 assets/cubyz/sbb/mushroom/big/bolete/base.blp delete mode 100644 assets/cubyz/sbb/mushroom/big/bolete/base.zig.zon delete mode 100644 assets/cubyz/sbb/mushroom/big/bolete/cap.zig.zon delete mode 100644 assets/cubyz/sbb/mushroom/big/bolete/cap/0.blp delete mode 100644 assets/cubyz/sbb/mushroom/big/bolete/cap/1.blp delete mode 100644 assets/cubyz/sbb/mushroom/big/bolete/cap/2.blp delete mode 100644 assets/cubyz/sbb/mushroom/big/bolete/empty.blp delete mode 100644 assets/cubyz/sbb/mushroom/big/bolete/empty.zig.zon 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 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 diff --git a/assets/cubyz/biomes/cave/bolete_big.zig.zon b/assets/cubyz/biomes/cave/bolete_big.zig.zon deleted file mode 100644 index ab0f8eff..00000000 --- a/assets/cubyz/biomes/cave/bolete_big.zig.zon +++ /dev/null @@ -1,41 +0,0 @@ -.{ - .isCave = true, - .maxHeight = -512, - .minHeight = -48250, - - .chance = 0.15, - - .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/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 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/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 deleted file mode 100644 index ec4dfaf5..00000000 --- a/assets/cubyz/sbb/mushroom/big/bolete/base.zig.zon +++ /dev/null @@ -1,10 +0,0 @@ -.{ - .blueprint = "cubyz:mushroom/big/bolete/base", - .children = .{ - .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 deleted file mode 100644 index ff30783b..00000000 --- a/assets/cubyz/sbb/mushroom/big/bolete/cap.zig.zon +++ /dev/null @@ -1,10 +0,0 @@ -.{ - .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/0.blp b/assets/cubyz/sbb/mushroom/big/bolete/cap/0.blp deleted file mode 100644 index ab14678942f0e4d78fbe1692a952e002d5f74caa..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 76 zcmZQz00T1yW(HOuWJ*p*c;KbyyK2oQt<&dy5)%>x8a_<=R2<|T^mwu`w?NWSPtRXJ cU1z?WS;@1aL6F_oLr(sz%QCy5H|Y!v0A*JijsO4v diff --git a/assets/cubyz/sbb/mushroom/big/bolete/cap/1.blp b/assets/cubyz/sbb/mushroom/big/bolete/cap/1.blp deleted file mode 100644 index 0c90508c63e27b7f7e710172f4c9d91014df6a50..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 85 zcmZQz00T1yW(HOuWKK>x8a_<=R2<|T^mwu`w?NWSPtRXJ mU1z?WS;=#QQCTo2=2MT$hL1DPy0l1ny*cu{EGNf;fdK%M!XU~3 diff --git a/assets/cubyz/sbb/mushroom/big/bolete/cap/2.blp b/assets/cubyz/sbb/mushroom/big/bolete/cap/2.blp deleted file mode 100644 index 96fa5bb58b90b13ac78266380939e6f1f4c01d69..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 117 zcmV-*0E+(r00000003bC1po#B0{{eLU|`@%E={VevMS5ZOkrSP5P(9^ZKWJ&YuB^xpt_gr#xHoVtRVYv?WFk H49W}uk@FG= diff --git a/assets/cubyz/sbb/mushroom/big/bolete/empty.zig.zon b/assets/cubyz/sbb/mushroom/big/bolete/empty.zig.zon deleted file mode 100644 index 10768d22..00000000 --- a/assets/cubyz/sbb/mushroom/big/bolete/empty.zig.zon +++ /dev/null @@ -1,8 +0,0 @@ -.{ - .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 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"}, - }, - }, -} 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"}, - }, - }, -} From 06616595b3ef79c756ecec432c83ad707a1eda40 Mon Sep 17 00:00:00 2001 From: codemob-dev <69110900+codemob-dev@users.noreply.github.com> Date: Wed, 23 Jul 2025 14:58:35 -0400 Subject: [PATCH 08/17] Added basic larger toadstools --- assets/cubyz/biomes/cave/toadstool_big.zig.zon | 6 +++--- .../sbb/mushroom/huge/toadstool/base.zig.zon | 9 +++++++++ .../cubyz/sbb/mushroom/huge/toadstool/base/0.blp | Bin 0 -> 115 bytes .../sbb/mushroom/huge/toadstool/base/0.zig.zon | 8 ++++++++ .../cubyz/sbb/mushroom/huge/toadstool/base/1.blp | Bin 0 -> 119 bytes .../sbb/mushroom/huge/toadstool/base/1.zig.zon | 8 ++++++++ .../cubyz/sbb/mushroom/huge/toadstool/cap.zig.zon | 9 +++++++++ .../cubyz/sbb/mushroom/huge/toadstool/cap/0.blp | Bin 0 -> 172 bytes .../cubyz/sbb/mushroom/huge/toadstool/cap/1.blp | Bin 0 -> 195 bytes .../cubyz/sbb/mushroom/huge/toadstool/empty.blp | Bin 0 -> 58 bytes .../sbb/mushroom/huge/toadstool/empty.zig.zon | 8 ++++++++ .../sbb/mushroom/huge/toadstool/extender.blp | Bin 0 -> 119 bytes .../sbb/mushroom/huge/toadstool/extender.zig.zon | 8 ++++++++ .../cubyz/sbb/mushroom/huge/toadstool/split.blp | Bin 0 -> 198 bytes .../sbb/mushroom/huge/toadstool/split.zig.zon | 8 ++++++++ .../sbb/mushroom/huge/toadstool/stem.zig.zon | 10 ++++++++++ blueprints/cap0.blp | Bin 0 -> 172 bytes blueprints/cap1.blp | Bin 0 -> 195 bytes 18 files changed, 71 insertions(+), 3 deletions(-) create mode 100644 assets/cubyz/sbb/mushroom/huge/toadstool/base.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/huge/toadstool/base/0.blp create mode 100644 assets/cubyz/sbb/mushroom/huge/toadstool/base/0.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/huge/toadstool/base/1.blp create mode 100644 assets/cubyz/sbb/mushroom/huge/toadstool/base/1.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/huge/toadstool/cap.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/huge/toadstool/cap/0.blp create mode 100644 assets/cubyz/sbb/mushroom/huge/toadstool/cap/1.blp create mode 100644 assets/cubyz/sbb/mushroom/huge/toadstool/empty.blp create mode 100644 assets/cubyz/sbb/mushroom/huge/toadstool/empty.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/huge/toadstool/extender.blp create mode 100644 assets/cubyz/sbb/mushroom/huge/toadstool/extender.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/huge/toadstool/split.blp create mode 100644 assets/cubyz/sbb/mushroom/huge/toadstool/split.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/huge/toadstool/stem.zig.zon create mode 100644 blueprints/cap0.blp create mode 100644 blueprints/cap1.blp diff --git a/assets/cubyz/biomes/cave/toadstool_big.zig.zon b/assets/cubyz/biomes/cave/toadstool_big.zig.zon index 7c4a01b8..bb5397c1 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.05, + .caves = -0.03, .music = "cubyz:la_kubisa_caverna", .stoneBlock = "cubyz:stone", @@ -24,9 +24,9 @@ }, .{ .id = "cubyz:sbb", - .structure = "cubyz:mushroom/big/toadstool/base", + .structure = "cubyz:mushroom/huge/toadstool/base", .placeMode = .degradable, - .chance = 0.2, + .chance = 0.1, }, .{ .id = "cubyz:flower_patch", diff --git a/assets/cubyz/sbb/mushroom/huge/toadstool/base.zig.zon b/assets/cubyz/sbb/mushroom/huge/toadstool/base.zig.zon new file mode 100644 index 00000000..8c94a887 --- /dev/null +++ b/assets/cubyz/sbb/mushroom/huge/toadstool/base.zig.zon @@ -0,0 +1,9 @@ +.{ + .blueprint = "cubyz:mushroom/huge/toadstool/empty", + .children = .{ + .white = .{ + .{.structure = "cubyz:mushroom/huge/toadstool/base/0"}, + .{.structure = "cubyz:mushroom/huge/toadstool/base/1"}, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/huge/toadstool/base/0.blp b/assets/cubyz/sbb/mushroom/huge/toadstool/base/0.blp new file mode 100644 index 0000000000000000000000000000000000000000..2ebd314ac26c6a6ee5056f04a7cf8863ac7badfc GIT binary patch literal 115 zcmZQz0D~X~76xV@WJ^v+c;KbyyK2oQt<&dy5)%>x+CCJ0y8PAqlW=gC_ovUr5)u+D z3Wtt*dj9(9I`iesN**4bMI0NS^qiR^^7m8EnMomR0trb8DF@hQNJ<=(h?SdPx+CCJ0y8PAqlW=gC_ovUr5)u+D z3Wtt*dj9(9I`iesN**4bMI0NS^qiR^^7m8EnMomRH4UAOg6nMxfz-@K!PSvF&KzGV Ur_$%kH@&Kc;i^tr%sVCq0CyHKT>t<8 literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/huge/toadstool/base/1.zig.zon b/assets/cubyz/sbb/mushroom/huge/toadstool/base/1.zig.zon new file mode 100644 index 00000000..bd585032 --- /dev/null +++ b/assets/cubyz/sbb/mushroom/huge/toadstool/base/1.zig.zon @@ -0,0 +1,8 @@ +.{ + .blueprint = "cubyz:mushroom/huge/toadstool/base/1", + .children = .{ + .white = .{ + .{.structure = "cubyz:mushroom/huge/toadstool/stem"}, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/huge/toadstool/cap.zig.zon b/assets/cubyz/sbb/mushroom/huge/toadstool/cap.zig.zon new file mode 100644 index 00000000..0fbe2426 --- /dev/null +++ b/assets/cubyz/sbb/mushroom/huge/toadstool/cap.zig.zon @@ -0,0 +1,9 @@ +.{ + .blueprint = "cubyz:mushroom/huge/toadstool/empty", + .children = .{ + .white = .{ + .{.structure = "cubyz:mushroom/huge/toadstool/cap/0"}, + .{.structure = "cubyz:mushroom/huge/toadstool/cap/1"}, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/huge/toadstool/cap/0.blp b/assets/cubyz/sbb/mushroom/huge/toadstool/cap/0.blp new file mode 100644 index 0000000000000000000000000000000000000000..07c07c68b3cef7bde34d561fdabd1cb1b9361b51 GIT binary patch literal 172 zcmZQz0D~+BRt9z;WKB*;c;KbyyK2oQt<&dy5)%>x+CF%F5)SV2{`9%{(PUw62?>cK z7g{HG34NYq3}mw?7#;QW{Pojy=F6Ft9L`0bE`NP!CE>x`6X4S)p~|qk(uT)J;?a># z!PjnuN%=FAW2JCAV3``i}oD571tPIR3ViH)?VVZ|442X9RNK6AR&ceXRz|6n} x#+Y_XkmVlY-J-(41jguL!-gg%!oUQ^)C?PRdqHV|m^6Y*9lHA{OV>2ZPXKXgRc`(9^ZKWJ&YuB^xpt_gr#xHoVtRVYv?WFk H49W}uk@FG= literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/huge/toadstool/empty.zig.zon b/assets/cubyz/sbb/mushroom/huge/toadstool/empty.zig.zon new file mode 100644 index 00000000..4b8cfd3a --- /dev/null +++ b/assets/cubyz/sbb/mushroom/huge/toadstool/empty.zig.zon @@ -0,0 +1,8 @@ +.{ + .blueprint = "cubyz:mushroom/huge/toadstool/empty", + .children = .{ + .white = .{ + .{.structure = null}, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/huge/toadstool/extender.blp b/assets/cubyz/sbb/mushroom/huge/toadstool/extender.blp new file mode 100644 index 0000000000000000000000000000000000000000..c9726710a00306efdadab94863156252c66711b3 GIT binary patch literal 119 zcmZQz0D~X~79eD1U`tL&c;KbyyK2oQt<&dy5)%>x+CCJ0y8PAqlW=gC_ovUr5)u+D z3Wtt*dj9(9I`iesN**4bMI0NS^qiR^^7m8EnMomRH4UAOg6nMxfz-@K!PSvF&KzGV Ur_$%kH@&Kc;i^tr%sVCq0CyHKT>t<8 literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/huge/toadstool/extender.zig.zon b/assets/cubyz/sbb/mushroom/huge/toadstool/extender.zig.zon new file mode 100644 index 00000000..9a4037bf --- /dev/null +++ b/assets/cubyz/sbb/mushroom/huge/toadstool/extender.zig.zon @@ -0,0 +1,8 @@ +.{ + .blueprint = "cubyz:mushroom/huge/toadstool/extender", + .children = .{ + .white = .{ + .{.structure = "cubyz:mushroom/huge/toadstool/stem"}, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/huge/toadstool/split.blp b/assets/cubyz/sbb/mushroom/huge/toadstool/split.blp new file mode 100644 index 0000000000000000000000000000000000000000..1cdf56bdaa482bf5bb818c975f5df9acd06048ad GIT binary patch literal 198 zcmV;%06G5v00000004sk1^@*B1^@@OkikxaKoEvMcJ*RBh=|df`T}_NWemF**o3eK zXq)!wn?M5rwxkX8-_!hGX6D}k9`r`-4?kOL5+G=++Qvy$Tbuvt_#b#3+p3HUo%Id5 zO{0ziVQW`PMLIKi674cm{{c@uu%$^&!8-D0d>8X(*sV3)`H0{hF=20==gK<&2Orrz zfduY=djce1O+D53z#q>2MDl!^HfBD8kEZwfoXh3DXXwcJvf!R;XB_T4=U<%V2;MSY A8UO$Q literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/huge/toadstool/split.zig.zon b/assets/cubyz/sbb/mushroom/huge/toadstool/split.zig.zon new file mode 100644 index 00000000..7f3d936e --- /dev/null +++ b/assets/cubyz/sbb/mushroom/huge/toadstool/split.zig.zon @@ -0,0 +1,8 @@ +.{ + .blueprint = "cubyz:mushroom/huge/toadstool/split", + .children = .{ + .white = .{ + .{.structure = "cubyz:mushroom/huge/toadstool/cap"}, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/huge/toadstool/stem.zig.zon b/assets/cubyz/sbb/mushroom/huge/toadstool/stem.zig.zon new file mode 100644 index 00000000..f4a3866b --- /dev/null +++ b/assets/cubyz/sbb/mushroom/huge/toadstool/stem.zig.zon @@ -0,0 +1,10 @@ +.{ + .blueprint = "cubyz:mushroom/huge/toadstool/empty", + .children = .{ + .white = .{ + .{.structure = "cubyz:mushroom/huge/toadstool/extender"}, + .{.structure = "cubyz:mushroom/huge/toadstool/split"}, + .{.structure = "cubyz:mushroom/huge/toadstool/cap"}, + }, + }, +} diff --git a/blueprints/cap0.blp b/blueprints/cap0.blp new file mode 100644 index 0000000000000000000000000000000000000000..07c07c68b3cef7bde34d561fdabd1cb1b9361b51 GIT binary patch literal 172 zcmZQz0D~+BRt9z;WKB*;c;KbyyK2oQt<&dy5)%>x+CF%F5)SV2{`9%{(PUw62?>cK z7g{HG34NYq3}mw?7#;QW{Pojy=F6Ft9L`0bE`NP!CE>x`6X4S)p~|qk(uT)J;?a># z!PjnuN%=FAW2JCAV3``i}oD571tPIR3ViH)?VVZ|442X9RNK6AR&ceXRz|6n} x#+Y_XkmVlY-J-(41jguL!-gg%!oUQ^)C?PRdqHV|m^6Y*9lHA{OV>2ZPXKXgRc` Date: Wed, 23 Jul 2025 15:13:19 -0400 Subject: [PATCH 09/17] Fix weird mushrooms --- .../sbb/mushroom/huge/toadstool/extender.blp | Bin 119 -> 0 bytes .../sbb/mushroom/huge/toadstool/extender.zig.zon | 8 -------- .../sbb/mushroom/huge/toadstool/stem.zig.zon | 1 - 3 files changed, 9 deletions(-) delete mode 100644 assets/cubyz/sbb/mushroom/huge/toadstool/extender.blp delete mode 100644 assets/cubyz/sbb/mushroom/huge/toadstool/extender.zig.zon diff --git a/assets/cubyz/sbb/mushroom/huge/toadstool/extender.blp b/assets/cubyz/sbb/mushroom/huge/toadstool/extender.blp deleted file mode 100644 index c9726710a00306efdadab94863156252c66711b3..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 119 zcmZQz0D~X~79eD1U`tL&c;KbyyK2oQt<&dy5)%>x+CCJ0y8PAqlW=gC_ovUr5)u+D z3Wtt*dj9(9I`iesN**4bMI0NS^qiR^^7m8EnMomRH4UAOg6nMxfz-@K!PSvF&KzGV Ur_$%kH@&Kc;i^tr%sVCq0CyHKT>t<8 diff --git a/assets/cubyz/sbb/mushroom/huge/toadstool/extender.zig.zon b/assets/cubyz/sbb/mushroom/huge/toadstool/extender.zig.zon deleted file mode 100644 index 9a4037bf..00000000 --- a/assets/cubyz/sbb/mushroom/huge/toadstool/extender.zig.zon +++ /dev/null @@ -1,8 +0,0 @@ -.{ - .blueprint = "cubyz:mushroom/huge/toadstool/extender", - .children = .{ - .white = .{ - .{.structure = "cubyz:mushroom/huge/toadstool/stem"}, - }, - }, -} diff --git a/assets/cubyz/sbb/mushroom/huge/toadstool/stem.zig.zon b/assets/cubyz/sbb/mushroom/huge/toadstool/stem.zig.zon index f4a3866b..d44208dd 100644 --- a/assets/cubyz/sbb/mushroom/huge/toadstool/stem.zig.zon +++ b/assets/cubyz/sbb/mushroom/huge/toadstool/stem.zig.zon @@ -2,7 +2,6 @@ .blueprint = "cubyz:mushroom/huge/toadstool/empty", .children = .{ .white = .{ - .{.structure = "cubyz:mushroom/huge/toadstool/extender"}, .{.structure = "cubyz:mushroom/huge/toadstool/split"}, .{.structure = "cubyz:mushroom/huge/toadstool/cap"}, }, From a74a25c7ae4c8718e9379f0d6493ab89cd6f7ebb Mon Sep 17 00:00:00 2001 From: codemob-dev <69110900+codemob-dev@users.noreply.github.com> Date: Wed, 23 Jul 2025 15:48:22 -0400 Subject: [PATCH 10/17] Remove old toadstools --- assets/cubyz/biomes/cave/toadstool_big.zig.zon | 2 +- .../cubyz/sbb/mushroom/big/toadstool/base.blp | Bin 84 -> 0 bytes .../sbb/mushroom/big/toadstool/base.zig.zon | 7 +++---- .../mushroom/{huge => big}/toadstool/base/0.blp | Bin .../sbb/mushroom/big/toadstool/base/0.zig.zon | 8 ++++++++ .../mushroom/{huge => big}/toadstool/base/1.blp | Bin .../sbb/mushroom/big/toadstool/base/1.zig.zon | 8 ++++++++ .../sbb/mushroom/big/toadstool/cap.zig.zon | 1 - .../cubyz/sbb/mushroom/big/toadstool/cap/0.blp | Bin 127 -> 172 bytes .../cubyz/sbb/mushroom/big/toadstool/cap/1.blp | Bin 133 -> 195 bytes .../cubyz/sbb/mushroom/big/toadstool/cap/2.blp | Bin 141 -> 0 bytes .../cubyz/sbb/mushroom/big/toadstool/split.blp | Bin 151 -> 198 bytes .../sbb/mushroom/big/toadstool/split.zig.zon | 1 - .../sbb/mushroom/big/toadstool/stem.zig.zon | 9 +++++++++ .../sbb/mushroom/big/toadstool/stem_segment.blp | Bin 83 -> 0 bytes .../mushroom/big/toadstool/stem_segment.zig.zon | 9 --------- .../sbb/mushroom/huge/toadstool/base.zig.zon | 9 --------- .../sbb/mushroom/huge/toadstool/base/0.zig.zon | 8 -------- .../sbb/mushroom/huge/toadstool/base/1.zig.zon | 8 -------- .../sbb/mushroom/huge/toadstool/cap.zig.zon | 9 --------- .../cubyz/sbb/mushroom/huge/toadstool/cap/0.blp | Bin 172 -> 0 bytes .../cubyz/sbb/mushroom/huge/toadstool/cap/1.blp | Bin 195 -> 0 bytes .../cubyz/sbb/mushroom/huge/toadstool/empty.blp | Bin 58 -> 0 bytes .../sbb/mushroom/huge/toadstool/empty.zig.zon | 8 -------- .../cubyz/sbb/mushroom/huge/toadstool/split.blp | Bin 198 -> 0 bytes .../sbb/mushroom/huge/toadstool/split.zig.zon | 8 -------- .../sbb/mushroom/huge/toadstool/stem.zig.zon | 9 --------- 27 files changed, 29 insertions(+), 75 deletions(-) delete mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/base.blp rename assets/cubyz/sbb/mushroom/{huge => big}/toadstool/base/0.blp (100%) create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/base/0.zig.zon rename assets/cubyz/sbb/mushroom/{huge => big}/toadstool/base/1.blp (100%) create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/base/1.zig.zon delete mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/cap/2.blp create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/stem.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 delete mode 100644 assets/cubyz/sbb/mushroom/huge/toadstool/base.zig.zon delete mode 100644 assets/cubyz/sbb/mushroom/huge/toadstool/base/0.zig.zon delete mode 100644 assets/cubyz/sbb/mushroom/huge/toadstool/base/1.zig.zon delete mode 100644 assets/cubyz/sbb/mushroom/huge/toadstool/cap.zig.zon delete mode 100644 assets/cubyz/sbb/mushroom/huge/toadstool/cap/0.blp delete mode 100644 assets/cubyz/sbb/mushroom/huge/toadstool/cap/1.blp delete mode 100644 assets/cubyz/sbb/mushroom/huge/toadstool/empty.blp delete mode 100644 assets/cubyz/sbb/mushroom/huge/toadstool/empty.zig.zon delete mode 100644 assets/cubyz/sbb/mushroom/huge/toadstool/split.blp delete mode 100644 assets/cubyz/sbb/mushroom/huge/toadstool/split.zig.zon delete mode 100644 assets/cubyz/sbb/mushroom/huge/toadstool/stem.zig.zon diff --git a/assets/cubyz/biomes/cave/toadstool_big.zig.zon b/assets/cubyz/biomes/cave/toadstool_big.zig.zon index bb5397c1..c6f4cc99 100644 --- a/assets/cubyz/biomes/cave/toadstool_big.zig.zon +++ b/assets/cubyz/biomes/cave/toadstool_big.zig.zon @@ -24,7 +24,7 @@ }, .{ .id = "cubyz:sbb", - .structure = "cubyz:mushroom/huge/toadstool/base", + .structure = "cubyz:mushroom/big/toadstool/base", .placeMode = .degradable, .chance = 0.1, }, 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 index 4745c830..54455615 100644 --- a/assets/cubyz/sbb/mushroom/big/toadstool/base.zig.zon +++ b/assets/cubyz/sbb/mushroom/big/toadstool/base.zig.zon @@ -1,10 +1,9 @@ .{ - .blueprint = "cubyz:mushroom/big/toadstool/base", + .blueprint = "cubyz:mushroom/big/toadstool/empty", .children = .{ .white = .{ - .{.structure = "cubyz:mushroom/big/toadstool/stem_segment"}, - .{.structure = "cubyz:mushroom/big/toadstool/cap"}, - .{.structure = "cubyz:mushroom/big/toadstool/split"}, + .{.structure = "cubyz:mushroom/big/toadstool/base/0"}, + .{.structure = "cubyz:mushroom/big/toadstool/base/1"}, }, }, } diff --git a/assets/cubyz/sbb/mushroom/huge/toadstool/base/0.blp b/assets/cubyz/sbb/mushroom/big/toadstool/base/0.blp similarity index 100% rename from assets/cubyz/sbb/mushroom/huge/toadstool/base/0.blp rename to assets/cubyz/sbb/mushroom/big/toadstool/base/0.blp diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/base/0.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/base/0.zig.zon new file mode 100644 index 00000000..d8f892aa --- /dev/null +++ b/assets/cubyz/sbb/mushroom/big/toadstool/base/0.zig.zon @@ -0,0 +1,8 @@ +.{ + .blueprint = "cubyz:mushroom/big/toadstool/base/0", + .children = .{ + .white = .{ + .{.structure = "cubyz:mushroom/big/toadstool/stem"}, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/huge/toadstool/base/1.blp b/assets/cubyz/sbb/mushroom/big/toadstool/base/1.blp similarity index 100% rename from assets/cubyz/sbb/mushroom/huge/toadstool/base/1.blp rename to assets/cubyz/sbb/mushroom/big/toadstool/base/1.blp diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/base/1.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/base/1.zig.zon new file mode 100644 index 00000000..ac6a4330 --- /dev/null +++ b/assets/cubyz/sbb/mushroom/big/toadstool/base/1.zig.zon @@ -0,0 +1,8 @@ +.{ + .blueprint = "cubyz:mushroom/big/toadstool/base/1", + .children = .{ + .white = .{ + .{.structure = "cubyz:mushroom/big/toadstool/stem"}, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/cap.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/cap.zig.zon index eb87a10c..30d018ff 100644 --- a/assets/cubyz/sbb/mushroom/big/toadstool/cap.zig.zon +++ b/assets/cubyz/sbb/mushroom/big/toadstool/cap.zig.zon @@ -4,7 +4,6 @@ .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 index d8adfce5e76542251c74c3cdad30ee229990b629..07c07c68b3cef7bde34d561fdabd1cb1b9361b51 100644 GIT binary patch delta 110 zcmbl3Cb_KafeCBxx?7lz<5K0p)fOd+uj$yR=yPzRXXh2@}}S*8=KZ% K0q%@h{R{x%s3iIT delta 65 zcmZ3(STDc;0a*;JV8}dCz)jPDQCTo2=9OTL9GjZVuZ^=a8N$z>IdJ9x({y78L-zUA O9vj7{|Ni((oB;sW0TaRi diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/cap/1.blp b/assets/cubyz/sbb/mushroom/big/toadstool/cap/1.blp index e73e198467d3ee52c438e38e604e2d74c7a2edfd..82a366e257a0f1e498ae0cba6baf1a8d3c14f70c 100644 GIT binary patch delta 160 zcmZo=Jj^J-00CJHtPJcx$U0F#w_ZT1=+ot|4>$4f@GuEHe6&R6@1I3yzMQdPd($A; zm8t2rX77n2jsu4exNMVHR(WLiO@{7DDIOn*M{{_5c-HWo(MS@CxRN-lU7M$)oZrKT zS?}DT11AogIly{sMw$17r*e<(E;@98<=BhF!)5^*4%*GieP2RG*ezR+M KUpG1J&j0`-1w!lq delta 97 zcmX@i*vcrt00CJHtYFA8Q9##2LPCN?!RV-`=dYixGhfcE|nLFkT!{MByJAUhKZ(!VXn2!MfB3vID 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/split.blp b/assets/cubyz/sbb/mushroom/big/toadstool/split.blp index 46e1670b9c3fb9c4b2e8d8bfef04b36658c0a5f5..1cdf56bdaa482bf5bb818c975f5df9acd06048ad 100644 GIT binary patch literal 198 zcmV;%06G5v00000004sk1^@*B1^@@OkikxaKoEvMcJ*RBh=|df`T}_NWemF**o3eK zXq)!wn?M5rwxkX8-_!hGX6D}k9`r`-4?kOL5+G=++Qvy$Tbuvt_#b#3+p3HUo%Id5 zO{0ziVQW`PMLIKi674cm{{c@uu%$^&!8-D0d>8X(*sV3)`H0{hF=20==gK<&2Orrz zfduY=djce1O+D53z#q>2MDl!^HfBD8kEZwfoXh3DXXwcJvf!R;XB_T4=U<%V2;MSY A8UO$Q 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"}, - }, - }, -} diff --git a/assets/cubyz/sbb/mushroom/huge/toadstool/base.zig.zon b/assets/cubyz/sbb/mushroom/huge/toadstool/base.zig.zon deleted file mode 100644 index 8c94a887..00000000 --- a/assets/cubyz/sbb/mushroom/huge/toadstool/base.zig.zon +++ /dev/null @@ -1,9 +0,0 @@ -.{ - .blueprint = "cubyz:mushroom/huge/toadstool/empty", - .children = .{ - .white = .{ - .{.structure = "cubyz:mushroom/huge/toadstool/base/0"}, - .{.structure = "cubyz:mushroom/huge/toadstool/base/1"}, - }, - }, -} diff --git a/assets/cubyz/sbb/mushroom/huge/toadstool/base/0.zig.zon b/assets/cubyz/sbb/mushroom/huge/toadstool/base/0.zig.zon deleted file mode 100644 index bc10b42d..00000000 --- a/assets/cubyz/sbb/mushroom/huge/toadstool/base/0.zig.zon +++ /dev/null @@ -1,8 +0,0 @@ -.{ - .blueprint = "cubyz:mushroom/huge/toadstool/base/0", - .children = .{ - .white = .{ - .{.structure = "cubyz:mushroom/huge/toadstool/stem"}, - }, - }, -} diff --git a/assets/cubyz/sbb/mushroom/huge/toadstool/base/1.zig.zon b/assets/cubyz/sbb/mushroom/huge/toadstool/base/1.zig.zon deleted file mode 100644 index bd585032..00000000 --- a/assets/cubyz/sbb/mushroom/huge/toadstool/base/1.zig.zon +++ /dev/null @@ -1,8 +0,0 @@ -.{ - .blueprint = "cubyz:mushroom/huge/toadstool/base/1", - .children = .{ - .white = .{ - .{.structure = "cubyz:mushroom/huge/toadstool/stem"}, - }, - }, -} diff --git a/assets/cubyz/sbb/mushroom/huge/toadstool/cap.zig.zon b/assets/cubyz/sbb/mushroom/huge/toadstool/cap.zig.zon deleted file mode 100644 index 0fbe2426..00000000 --- a/assets/cubyz/sbb/mushroom/huge/toadstool/cap.zig.zon +++ /dev/null @@ -1,9 +0,0 @@ -.{ - .blueprint = "cubyz:mushroom/huge/toadstool/empty", - .children = .{ - .white = .{ - .{.structure = "cubyz:mushroom/huge/toadstool/cap/0"}, - .{.structure = "cubyz:mushroom/huge/toadstool/cap/1"}, - }, - }, -} diff --git a/assets/cubyz/sbb/mushroom/huge/toadstool/cap/0.blp b/assets/cubyz/sbb/mushroom/huge/toadstool/cap/0.blp deleted file mode 100644 index 07c07c68b3cef7bde34d561fdabd1cb1b9361b51..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 172 zcmZQz0D~+BRt9z;WKB*;c;KbyyK2oQt<&dy5)%>x+CF%F5)SV2{`9%{(PUw62?>cK z7g{HG34NYq3}mw?7#;QW{Pojy=F6Ft9L`0bE`NP!CE>x`6X4S)p~|qk(uT)J;?a># z!PjnuN%=FAW2JCAV3``i}oD571tPIR3ViH)?VVZ|442X9RNK6AR&ceXRz|6n} x#+Y_XkmVlY-J-(41jguL!-gg%!oUQ^)C?PRdqHV|m^6Y*9lHA{OV>2ZPXKXgRc`(9^ZKWJ&YuB^xpt_gr#xHoVtRVYv?WFk H49W}uk@FG= diff --git a/assets/cubyz/sbb/mushroom/huge/toadstool/empty.zig.zon b/assets/cubyz/sbb/mushroom/huge/toadstool/empty.zig.zon deleted file mode 100644 index 4b8cfd3a..00000000 --- a/assets/cubyz/sbb/mushroom/huge/toadstool/empty.zig.zon +++ /dev/null @@ -1,8 +0,0 @@ -.{ - .blueprint = "cubyz:mushroom/huge/toadstool/empty", - .children = .{ - .white = .{ - .{.structure = null}, - }, - }, -} diff --git a/assets/cubyz/sbb/mushroom/huge/toadstool/split.blp b/assets/cubyz/sbb/mushroom/huge/toadstool/split.blp deleted file mode 100644 index 1cdf56bdaa482bf5bb818c975f5df9acd06048ad..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 198 zcmV;%06G5v00000004sk1^@*B1^@@OkikxaKoEvMcJ*RBh=|df`T}_NWemF**o3eK zXq)!wn?M5rwxkX8-_!hGX6D}k9`r`-4?kOL5+G=++Qvy$Tbuvt_#b#3+p3HUo%Id5 zO{0ziVQW`PMLIKi674cm{{c@uu%$^&!8-D0d>8X(*sV3)`H0{hF=20==gK<&2Orrz zfduY=djce1O+D53z#q>2MDl!^HfBD8kEZwfoXh3DXXwcJvf!R;XB_T4=U<%V2;MSY A8UO$Q diff --git a/assets/cubyz/sbb/mushroom/huge/toadstool/split.zig.zon b/assets/cubyz/sbb/mushroom/huge/toadstool/split.zig.zon deleted file mode 100644 index 7f3d936e..00000000 --- a/assets/cubyz/sbb/mushroom/huge/toadstool/split.zig.zon +++ /dev/null @@ -1,8 +0,0 @@ -.{ - .blueprint = "cubyz:mushroom/huge/toadstool/split", - .children = .{ - .white = .{ - .{.structure = "cubyz:mushroom/huge/toadstool/cap"}, - }, - }, -} diff --git a/assets/cubyz/sbb/mushroom/huge/toadstool/stem.zig.zon b/assets/cubyz/sbb/mushroom/huge/toadstool/stem.zig.zon deleted file mode 100644 index d44208dd..00000000 --- a/assets/cubyz/sbb/mushroom/huge/toadstool/stem.zig.zon +++ /dev/null @@ -1,9 +0,0 @@ -.{ - .blueprint = "cubyz:mushroom/huge/toadstool/empty", - .children = .{ - .white = .{ - .{.structure = "cubyz:mushroom/huge/toadstool/split"}, - .{.structure = "cubyz:mushroom/huge/toadstool/cap"}, - }, - }, -} From f278ac0deb957c6aff583b586cb04006a47f07a6 Mon Sep 17 00:00:00 2001 From: codemob-dev <69110900+codemob-dev@users.noreply.github.com> Date: Wed, 23 Jul 2025 18:07:07 -0400 Subject: [PATCH 11/17] Better toadstools --- .../cubyz/biomes/cave/toadstool_big.zig.zon | 4 +-- .../sbb/mushroom/big/toadstool/base.zig.zon | 5 ++++ .../sbb/mushroom/big/toadstool/base/0.blp | Bin 115 -> 204 bytes .../sbb/mushroom/big/toadstool/base/0.zig.zon | 14 ++++++++++- .../sbb/mushroom/big/toadstool/base/1.blp | Bin 119 -> 191 bytes .../sbb/mushroom/big/toadstool/base/1.zig.zon | 14 ++++++++++- .../sbb/mushroom/big/toadstool/base/2.blp | Bin 0 -> 163 bytes .../sbb/mushroom/big/toadstool/base/2.zig.zon | 20 +++++++++++++++ .../sbb/mushroom/big/toadstool/base/3.blp | Bin 0 -> 192 bytes .../sbb/mushroom/big/toadstool/base/3.zig.zon | 20 +++++++++++++++ .../sbb/mushroom/big/toadstool/base/4.blp | Bin 0 -> 228 bytes .../sbb/mushroom/big/toadstool/base/4.zig.zon | 23 ++++++++++++++++++ .../sbb/mushroom/big/toadstool/base/5.blp | Bin 0 -> 172 bytes .../sbb/mushroom/big/toadstool/base/5.zig.zon | 20 +++++++++++++++ .../sbb/mushroom/big/toadstool/base/6.blp | Bin 0 -> 172 bytes .../sbb/mushroom/big/toadstool/base/6.zig.zon | 20 +++++++++++++++ .../big/toadstool/branch/blue.zig.zon | 9 +++++++ .../mushroom/big/toadstool/branch/blue0.blp | Bin 0 -> 93 bytes .../mushroom/big/toadstool/branch/blue1.blp | Bin 0 -> 93 bytes .../big/toadstool/branch/green.zig.zon | 9 +++++++ .../mushroom/big/toadstool/branch/green0.blp | Bin 0 -> 110 bytes .../mushroom/big/toadstool/branch/green1.blp | Bin 0 -> 108 bytes .../mushroom/big/toadstool/branch/red.zig.zon | 9 +++++++ .../mushroom/big/toadstool/branch/red0.blp | Bin 0 -> 97 bytes .../mushroom/big/toadstool/branch/red1.blp | Bin 0 -> 102 bytes .../sbb/mushroom/big/toadstool/cap.zig.zon | 9 ------- .../sbb/mushroom/big/toadstool/cap/0.blp | Bin 172 -> 0 bytes .../sbb/mushroom/big/toadstool/cap/1.blp | Bin 195 -> 0 bytes .../big/toadstool/empty_horizontal.blp | Bin 0 -> 63 bytes .../big/toadstool/empty_horizontal.zig.zon | 8 ++++++ .../sbb/mushroom/big/toadstool/large_cap.zon | 12 +++++++++ .../mushroom/big/toadstool/large_cap/0.blp | Bin 0 -> 160 bytes .../mushroom/big/toadstool/large_cap/1.blp | Bin 0 -> 130 bytes .../mushroom/big/toadstool/large_cap/2.blp | Bin 0 -> 143 bytes .../mushroom/big/toadstool/large_cap/3.blp | Bin 0 -> 158 bytes .../mushroom/big/toadstool/large_cap/4.blp | Bin 0 -> 163 bytes .../mushroom/big/toadstool/small_cap.zig.zon | 10 ++++++++ .../mushroom/big/toadstool/small_cap/0.blp | Bin 0 -> 121 bytes .../mushroom/big/toadstool/small_cap/1.blp | Bin 0 -> 96 bytes .../mushroom/big/toadstool/small_cap/2.blp | Bin 0 -> 132 bytes .../sbb/mushroom/big/toadstool/split.blp | Bin 198 -> 0 bytes .../sbb/mushroom/big/toadstool/split.zig.zon | 8 ------ .../sbb/mushroom/big/toadstool/stem.zig.zon | 9 ------- blueprints/cap0.blp | Bin 172 -> 0 bytes blueprints/cap1.blp | Bin 195 -> 0 bytes 45 files changed, 193 insertions(+), 30 deletions(-) create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/base/2.blp create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/base/2.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/base/3.blp create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/base/3.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/base/4.blp create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/base/4.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/base/5.blp create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/base/5.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/base/6.blp create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/base/6.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/branch/blue.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/branch/blue0.blp create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/branch/blue1.blp create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/branch/green.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/branch/green0.blp create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/branch/green1.blp create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/branch/red.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/branch/red0.blp create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/branch/red1.blp 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 create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/empty_horizontal.blp create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/empty_horizontal.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/large_cap.zon create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/large_cap/0.blp create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/large_cap/1.blp create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/large_cap/2.blp create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/large_cap/3.blp create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/large_cap/4.blp create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/small_cap.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/small_cap/0.blp create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/small_cap/1.blp create mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/small_cap/2.blp 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.zig.zon delete mode 100644 blueprints/cap0.blp delete mode 100644 blueprints/cap1.blp diff --git a/assets/cubyz/biomes/cave/toadstool_big.zig.zon b/assets/cubyz/biomes/cave/toadstool_big.zig.zon index c6f4cc99..fde9a9e4 100644 --- a/assets/cubyz/biomes/cave/toadstool_big.zig.zon +++ b/assets/cubyz/biomes/cave/toadstool_big.zig.zon @@ -3,9 +3,9 @@ .maxHeight = -512, .minHeight = -48250, - .chance = 0.125, + .chance = 0.2, - .caves = -0.03, + .caves = -0.02, .music = "cubyz:la_kubisa_caverna", .stoneBlock = "cubyz:stone", diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/base.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/base.zig.zon index 54455615..6203cf3f 100644 --- a/assets/cubyz/sbb/mushroom/big/toadstool/base.zig.zon +++ b/assets/cubyz/sbb/mushroom/big/toadstool/base.zig.zon @@ -4,6 +4,11 @@ .white = .{ .{.structure = "cubyz:mushroom/big/toadstool/base/0"}, .{.structure = "cubyz:mushroom/big/toadstool/base/1"}, + .{.structure = "cubyz:mushroom/big/toadstool/base/2"}, + .{.structure = "cubyz:mushroom/big/toadstool/base/3"}, + .{.structure = "cubyz:mushroom/big/toadstool/base/4"}, + .{.structure = "cubyz:mushroom/big/toadstool/base/5"}, + .{.structure = "cubyz:mushroom/big/toadstool/base/6"}, }, }, } diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/base/0.blp b/assets/cubyz/sbb/mushroom/big/toadstool/base/0.blp index 2ebd314ac26c6a6ee5056f04a7cf8863ac7badfc..fb25e6ab22f583eb6f1571c0c425d5f2e41e1d3e 100644 GIT binary patch literal 204 zcmV;-05ksp00000006512ml2D1po-GQr*geKoC8ypI_vaV9{;R19;!txGK7^HLz+? zPap2~W8%7$9T;Th%$zwR3n0u|e!1>XBys?;$t0CYLup<&L=wQplxxnDtP(O$G9?Z* z9RaL|RH=%hBbJ6pg#r-0x=4vqj82{_(G&nyLxRh;tIq?2r@ubfY^^DM8+>>=Y<;nV z-#YX^MF9UTH+%ndc%wdoCm-CsJ_7i6-UmIouyT>(zMVtA?x+CCJ0y8PAqlW=gC_ovUr5)u+D z3Wtt*dj9(9I`iesN**4bMI0NS^qiR^^7m8EnMomR0trb8DF@hQNJ<=(h?SdPbDw2lMtZs-jfc-$f zsk1O?B})K1+o&*kUIBmmFx1YR81Fqum{qpOHG|-J~)EE^u7>)_1_C2xEJ3D t;ZJ$-S6&1THu-@?uj3=_(a|&X_@;K=YLsX1FzvDQ)?*Cj@MZIMegeO8Qq=$e literal 119 zcmZQz0D~X~79eD1U`tL&c;KbyyK2oQt<&dy5)%>x+CCJ0y8PAqlW=gC_ovUr5)u+D z3Wtt*dj9(9I`iesN**4bMI0NS^qiR^^7m8EnMomRH4UAOg6nMxfz-@K!PSvF&KzGV Ur_$%kH@&Kc;i^tr%sVCq0CyHKT>t<8 diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/base/1.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/base/1.zig.zon index ac6a4330..5f0df77d 100644 --- a/assets/cubyz/sbb/mushroom/big/toadstool/base/1.zig.zon +++ b/assets/cubyz/sbb/mushroom/big/toadstool/base/1.zig.zon @@ -2,7 +2,19 @@ .blueprint = "cubyz:mushroom/big/toadstool/base/1", .children = .{ .white = .{ - .{.structure = "cubyz:mushroom/big/toadstool/stem"}, + .{.structure = "cubyz:mushroom/big/toadstool/large_cap"}, + }, + .crimson = { + .{.structure = "cubyz:mushroom/big/toadstool/branch/red"}, + .{.structure = null}, + }, + .green = { + .{.structure = "cubyz:mushroom/big/toadstool/branch/green"}, + .{.structure = null}, + }, + .blue = { + .{.structure = "cubyz:mushroom/big/toadstool/branch/blue"}, + .{.structure = null}, }, }, } diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/base/2.blp b/assets/cubyz/sbb/mushroom/big/toadstool/base/2.blp new file mode 100644 index 0000000000000000000000000000000000000000..f39d4790065a505173301ce9c9db9c621ff2b261 GIT binary patch literal 163 zcmV;U09^k700000005o<2LJ;A1ONw}kITx!FcgHp-u}hE5>$MQ?tL56hW0@8Krf0u zy|h7;G%7e}lVmdAB*1?)n(J+UR;huV-}T0nRV%J8t4@x+o`AKtoHpg4hq@nB9k2}( zmsSP~te%E;(#XWvgqMvQZ4AJ$NSyeM@ z0CQI%bfW+)yZYtnR+zMu1%UXfU_&|C<_ovWp`cp%h}t2-d#jG4?g8UXiEEt|j3AEROb&;64&X;_)BxU7uP0A6~!lroGmrQ=ZQ zI-&TqNE!gI1fS#p9!`QORH|Aon7$kp>bo>K<@1}Vs@-^haIo$!z&Cp^FzX|BOm;a0 zSa*4L7E1HM@I>ga`QK+W2hOT2{LE+CsTg~r;CA{Op$}_5X4h_q3y87d;9WD0&)}y6aRgMphb<7&T zChm}WXaQ_v{oIlB#_DdcAw_+vSedrq*oRn{?U0Q%S=xo`~{7)Gcvv~=KksL9|Jsabnv_$r$Xa3^x3r=Ei aHm>D8nNyVR5NG~!lc~Er^8{9NSUvzl0ZkwP literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/base/6.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/base/6.zig.zon new file mode 100644 index 00000000..0abd8dc9 --- /dev/null +++ b/assets/cubyz/sbb/mushroom/big/toadstool/base/6.zig.zon @@ -0,0 +1,20 @@ +.{ + .blueprint = "cubyz:mushroom/big/toadstool/base/6", + .children = .{ + .white = .{ + .{.structure = "cubyz:mushroom/big/toadstool/large_cap"}, + }, + .crimson = { + .{.structure = "cubyz:mushroom/big/toadstool/branch/red"}, + .{.structure = null}, + }, + .green = { + .{.structure = "cubyz:mushroom/big/toadstool/branch/green"}, + .{.structure = null}, + }, + .blue = { + .{.structure = "cubyz:mushroom/big/toadstool/branch/blue"}, + .{.structure = null}, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/branch/blue.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/branch/blue.zig.zon new file mode 100644 index 00000000..b778c838 --- /dev/null +++ b/assets/cubyz/sbb/mushroom/big/toadstool/branch/blue.zig.zon @@ -0,0 +1,9 @@ +.{ + .blueprint = "cubyz:mushroom/big/toadstool/empty_horizontal", + .children = .{ + .white = .{ + .{.structure = "cubyz:mushroom/big/toadstool/branch/blue0"}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/blue1"}, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/branch/blue0.blp b/assets/cubyz/sbb/mushroom/big/toadstool/branch/blue0.blp new file mode 100644 index 0000000000000000000000000000000000000000..64e8c2a795dac6bf3cfd96054750da7af204924a GIT binary patch literal 93 zcmZQz0E1u#76xVpMh2$jgaiQ(J>OMpHfi~JT{^FS%IEwUpxA?^j;T-6ml+rsbU0S1 u{_NB|s`~S%OMpHfi~JT{^FS%IEwUpxA?^j;T-6ml+rsbU0S1 t{_NB|s`~S%VHYz~k6A}cPKX`o-4({^)^tt%aw@GFTK29rg75_0x6c%bArtCmN|~Umz__|`WqR9YR!IrT84G`z KPPn4L$N&H*zA5Pd literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/branch/green1.blp b/assets/cubyz/sbb/mushroom/big/toadstool/branch/green1.blp new file mode 100644 index 0000000000000000000000000000000000000000..4d7a9cf18982775185d8d0a610d9f2390330ed0d GIT binary patch literal 108 zcmZQz0E1u#76xVzOioA;@YeHPwPusnNq-+ry_4t9clv92o$)@G0F-f??&+rkWISl% znEo_6A}a(K6Fi<^yPE6(PiV$5)u+e6p~bb wc4{6~{rS`Kqo-?Ux8a{MQp7iB&x6x(e&k_<6M--A& ze|BmfRsH$X@}s9~XXQyr9v+@UFN{uhvhtj0=xh``Czg_sl#m9*2?=Qz7%nF;FaQ7* CPA203 literal 0 HcmV?d00001 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 30d018ff..00000000 --- a/assets/cubyz/sbb/mushroom/big/toadstool/cap.zig.zon +++ /dev/null @@ -1,9 +0,0 @@ -.{ - .blueprint = "cubyz:mushroom/big/toadstool/empty", - .children = .{ - .white = .{ - .{.structure = "cubyz:mushroom/big/toadstool/cap/0"}, - .{.structure = "cubyz:mushroom/big/toadstool/cap/1"}, - }, - }, -} 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 07c07c68b3cef7bde34d561fdabd1cb1b9361b51..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 172 zcmZQz0D~+BRt9z;WKB*;c;KbyyK2oQt<&dy5)%>x+CF%F5)SV2{`9%{(PUw62?>cK z7g{HG34NYq3}mw?7#;QW{Pojy=F6Ft9L`0bE`NP!CE>x`6X4S)p~|qk(uT)J;?a># z!PjnuN%=FAW2JCAV3``i}oD571tPIR3ViH)?VVZ|442X9RNK6AR&ceXRz|6n} x#+Y_XkmVlY-J-(41jguL!-gg%!oUQ^)C?PRdqHV|m^6Y*9lHA{OV>2ZPXKXgRc`%p|8pnKcwW>$e?rGI6)550@kBgzS^6_W M17iaNAZB6!0PT_zY5)KL literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/empty_horizontal.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/empty_horizontal.zig.zon new file mode 100644 index 00000000..40b5821b --- /dev/null +++ b/assets/cubyz/sbb/mushroom/big/toadstool/empty_horizontal.zig.zon @@ -0,0 +1,8 @@ +.{ + .blueprint = "cubyz:mushroom/big/toadstool/empty_horizontal", + .children = .{ + .white = .{ + .{.structure = null}, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/large_cap.zon b/assets/cubyz/sbb/mushroom/big/toadstool/large_cap.zon new file mode 100644 index 00000000..82db9bc0 --- /dev/null +++ b/assets/cubyz/sbb/mushroom/big/toadstool/large_cap.zon @@ -0,0 +1,12 @@ +.{ + .blueprint = "cubyz:mushroom/big/toadstool/empty", + .children = .{ + .white = .{ + .{.structure = "cubyz:mushroom/big/toadstool/large_cap/0"}, + .{.structure = "cubyz:mushroom/big/toadstool/large_cap/1"}, + .{.structure = "cubyz:mushroom/big/toadstool/large_cap/2"}, + .{.structure = "cubyz:mushroom/big/toadstool/large_cap/3"}, + .{.structure = "cubyz:mushroom/big/toadstool/large_cap/4"}, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/large_cap/0.blp b/assets/cubyz/sbb/mushroom/big/toadstool/large_cap/0.blp new file mode 100644 index 0000000000000000000000000000000000000000..d645fa140adbdfb9045c5ac7c0b85c45c7c8d6b7 GIT binary patch literal 160 zcmZQz0D~+BRt7d8W=T#+c;KbyyK2oQt<&dy5)%>x+CF%F5)SV2{`9%{(PUw62?>cK z7g{HG34NYq3}mw?7#;QW{Pojy=F6Ft9L`0bE`NP!C9#3oO{d1q=F^X_pA8Hab~OGt zk@VtI%bV*72}uSGuM^V}(h?FAk`fwMPjr}g{AnG_eFk4!3;u#{dA<2SrQ( literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/large_cap/1.blp b/assets/cubyz/sbb/mushroom/big/toadstool/large_cap/1.blp new file mode 100644 index 0000000000000000000000000000000000000000..b787b2287b6096acdd8729acf5ce33330ae1c076 GIT binary patch literal 130 zcmZQz0D~+BRxo5vPDps*rRTe9%_gnW=Y0|r5(L^lczqHM?(+Whx%km!VQvWti6a+U zCwB>bo@5MUvnUuH_4NGp({<*{nUx&QMV~HzeP|_Nz^Ke;rq>X#_}~GS=fw&e3uiYA egg2~CPfJKjXgr-cA%kz#-XkxL=JAPrWdH!zSTrmE literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/large_cap/2.blp b/assets/cubyz/sbb/mushroom/big/toadstool/large_cap/2.blp new file mode 100644 index 0000000000000000000000000000000000000000..868ad2470ffea1b8307736868cffca1f94ab1b9a GIT binary patch literal 143 zcmZQz0D~+BRxo5qPDps*rRTe9%_gnW=Y0|r5(L^lczqHM?(+Whx%km!VQvWti6a+U zCwB>bo@5MUvnUuH_4NGp({<*{nUx&QMV~HzeP|`If!R&y=Z~-11_lc|J}&sEdf~^7 sx6U1s3s$73C8Q)IK1fPv?3PS0<=-zKa^cH{1s`2Gb_vQ(5N%@s09+nCvj6}9 literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/large_cap/3.blp b/assets/cubyz/sbb/mushroom/big/toadstool/large_cap/3.blp new file mode 100644 index 0000000000000000000000000000000000000000..1a8b08e983b93039569b7ac643139287a112e71e GIT binary patch literal 158 zcmZQz0D~+BRtTKi@5tTcAkb>R)!Btzv7^r6Lg4woGjGHm6g$GXbwOQiOX8M37rPsW zYfkSm=a1OAdar$-`A60bFPHoITr5+%dU7WB2HuUiK5x&>Z}mEr^Mm!0-1ci}mwsHj z{%8G*zfNZE6JKptllyr0z_Oy!^>b!SQF*}4r*eex{M0+|BVY4XKiwAI{!}A;|Htji K%AQqxWB~wV6HHJ5 literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/large_cap/4.blp b/assets/cubyz/sbb/mushroom/big/toadstool/large_cap/4.blp new file mode 100644 index 0000000000000000000000000000000000000000..25d82a7a174a938fa8bb7229fd163c5ad5e2ee07 GIT binary patch literal 163 zcmZQz0D~+BRxo5)JHe5=$w8oX|1rOdiXMlY-TCF1tV=o;+!tEc#QCTtDqz3ep&MeH z+8K%b_p5*3<74)@w0Y;fGI3p_gnNOjJ+Ez9^;FT<@4zDc*;XqrJ=PA$l8Y9fQCgJj zv!-;Sxaj-yFDmyxeOS}-;BjPb*M>q12M*bPU+zmKX5Q}?wE5=u@8SBo7uxnm>4b5)SV2{`9%{(c~_n&y$QL zBqUlcrcM&(1~OO_4juLM{Pojy=F6Ft97`>KzWi12lxGJ6H?uM`GqbSBV>TvqVx6WZnrA*6JMg{=w>nxK1 literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/small_cap/1.blp b/assets/cubyz/sbb/mushroom/big/toadstool/small_cap/1.blp new file mode 100644 index 0000000000000000000000000000000000000000..f50b9c387411f496653a412cb4e7f7f5c9c66604 GIT binary patch literal 96 zcmZQz0D}Mq76xV@WKB*;c;KbyyK2oQt<&dy5)%>x+CF%F5)SV2{`9%{(PUw62?+@n yg+oU@J%9alo%wQRCC5_BpD%wEJmnEMz;W~iL+l)hQXif(0USvWulrBi%K!iyZYBT# literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/small_cap/2.blp b/assets/cubyz/sbb/mushroom/big/toadstool/small_cap/2.blp new file mode 100644 index 0000000000000000000000000000000000000000..0844ec8bc7820088dbc0cfcb6305a178ce1ee7e5 GIT binary patch literal 132 zcmZQz0D~+BRtQW^NO<6-=eugnCau%weG(HA1lm4$eG(4t^8WO>_|arxZV3sABNtjH zcL{x-WDI1pC>R~}^!)YHb>_>Nl^o7RpDurWXeHsn+@rEe{jQB1o7xHs<+#!#v(g(9 e<&2q)nYks54L2M(YIrp;O+WRYg4l#qIR*gvjWDDD literal 0 HcmV?d00001 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 1cdf56bdaa482bf5bb818c975f5df9acd06048ad..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 198 zcmV;%06G5v00000004sk1^@*B1^@@OkikxaKoEvMcJ*RBh=|df`T}_NWemF**o3eK zXq)!wn?M5rwxkX8-_!hGX6D}k9`r`-4?kOL5+G=++Qvy$Tbuvt_#b#3+p3HUo%Id5 zO{0ziVQW`PMLIKi674cm{{c@uu%$^&!8-D0d>8X(*sV3)`H0{hF=20==gK<&2Orrz zfduY=djce1O+D53z#q>2MDl!^HfBD8kEZwfoXh3DXXwcJvf!R;XB_T4=U<%V2;MSY A8UO$Q diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/split.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/split.zig.zon deleted file mode 100644 index 6b1e16e0..00000000 --- a/assets/cubyz/sbb/mushroom/big/toadstool/split.zig.zon +++ /dev/null @@ -1,8 +0,0 @@ -.{ - .blueprint = "cubyz:mushroom/big/toadstool/split", - .children = .{ - .white = .{ - .{.structure = "cubyz:mushroom/big/toadstool/cap"}, - }, - }, -} diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/stem.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/stem.zig.zon deleted file mode 100644 index 96c0f512..00000000 --- a/assets/cubyz/sbb/mushroom/big/toadstool/stem.zig.zon +++ /dev/null @@ -1,9 +0,0 @@ -.{ - .blueprint = "cubyz:mushroom/big/toadstool/empty", - .children = .{ - .white = .{ - .{.structure = "cubyz:mushroom/big/toadstool/split"}, - .{.structure = "cubyz:mushroom/big/toadstool/cap"}, - }, - }, -} diff --git a/blueprints/cap0.blp b/blueprints/cap0.blp deleted file mode 100644 index 07c07c68b3cef7bde34d561fdabd1cb1b9361b51..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 172 zcmZQz0D~+BRt9z;WKB*;c;KbyyK2oQt<&dy5)%>x+CF%F5)SV2{`9%{(PUw62?>cK z7g{HG34NYq3}mw?7#;QW{Pojy=F6Ft9L`0bE`NP!CE>x`6X4S)p~|qk(uT)J;?a># z!PjnuN%=FAW2JCAV3``i}oD571tPIR3ViH)?VVZ|442X9RNK6AR&ceXRz|6n} x#+Y_XkmVlY-J-(41jguL!-gg%!oUQ^)C?PRdqHV|m^6Y*9lHA{OV>2ZPXKXgRc` Date: Wed, 23 Jul 2025 18:10:32 -0400 Subject: [PATCH 12/17] Lower the chance for branches to spawn --- .../cubyz/sbb/mushroom/big/toadstool/base/0.zig.zon | 12 ++++++------ .../cubyz/sbb/mushroom/big/toadstool/base/1.zig.zon | 12 ++++++------ .../cubyz/sbb/mushroom/big/toadstool/base/2.zig.zon | 12 ++++++------ .../cubyz/sbb/mushroom/big/toadstool/base/3.zig.zon | 12 ++++++------ .../cubyz/sbb/mushroom/big/toadstool/base/4.zig.zon | 12 ++++++------ .../cubyz/sbb/mushroom/big/toadstool/base/5.zig.zon | 12 ++++++------ .../cubyz/sbb/mushroom/big/toadstool/base/6.zig.zon | 12 ++++++------ .../toadstool/{large_cap.zon => large_cap.zig.zon} | 0 8 files changed, 42 insertions(+), 42 deletions(-) rename assets/cubyz/sbb/mushroom/big/toadstool/{large_cap.zon => large_cap.zig.zon} (100%) diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/base/0.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/base/0.zig.zon index b20a866f..0e10b352 100644 --- a/assets/cubyz/sbb/mushroom/big/toadstool/base/0.zig.zon +++ b/assets/cubyz/sbb/mushroom/big/toadstool/base/0.zig.zon @@ -5,16 +5,16 @@ .{.structure = "cubyz:mushroom/big/toadstool/large_cap"}, }, .crimson = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/red"}, - .{.structure = null}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/red", chance = 0.25}, + .{.structure = null, chance = 0.75}, }, .green = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/green"}, - .{.structure = null}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/green", chance = 0.25}, + .{.structure = null, chance = 0.75}, }, .blue = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/blue"}, - .{.structure = null}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/blue", chance = 0.25}, + .{.structure = null, chance = 0.75}, }, }, } diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/base/1.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/base/1.zig.zon index 5f0df77d..fdc70355 100644 --- a/assets/cubyz/sbb/mushroom/big/toadstool/base/1.zig.zon +++ b/assets/cubyz/sbb/mushroom/big/toadstool/base/1.zig.zon @@ -5,16 +5,16 @@ .{.structure = "cubyz:mushroom/big/toadstool/large_cap"}, }, .crimson = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/red"}, - .{.structure = null}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/red", chance = 0.25}, + .{.structure = null, chance = 0.75}, }, .green = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/green"}, - .{.structure = null}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/green", chance = 0.25}, + .{.structure = null, chance = 0.75}, }, .blue = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/blue"}, - .{.structure = null}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/blue", chance = 0.25}, + .{.structure = null, chance = 0.75}, }, }, } diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/base/2.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/base/2.zig.zon index dcfd3b57..02525612 100644 --- a/assets/cubyz/sbb/mushroom/big/toadstool/base/2.zig.zon +++ b/assets/cubyz/sbb/mushroom/big/toadstool/base/2.zig.zon @@ -5,16 +5,16 @@ .{.structure = "cubyz:mushroom/big/toadstool/large_cap"}, }, .crimson = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/red"}, - .{.structure = null}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/red", chance = 0.25}, + .{.structure = null, chance = 0.75}, }, .green = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/green"}, - .{.structure = null}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/green", chance = 0.25}, + .{.structure = null, chance = 0.75}, }, .blue = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/blue"}, - .{.structure = null}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/blue", chance = 0.25}, + .{.structure = null, chance = 0.75}, }, }, } diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/base/3.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/base/3.zig.zon index 58e34411..f59c6e12 100644 --- a/assets/cubyz/sbb/mushroom/big/toadstool/base/3.zig.zon +++ b/assets/cubyz/sbb/mushroom/big/toadstool/base/3.zig.zon @@ -5,16 +5,16 @@ .{.structure = "cubyz:mushroom/big/toadstool/large_cap"}, }, .crimson = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/red"}, - .{.structure = null}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/red", chance = 0.25}, + .{.structure = null, chance = 0.75}, }, .green = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/green"}, - .{.structure = null}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/green", chance = 0.25}, + .{.structure = null, chance = 0.75}, }, .blue = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/blue"}, - .{.structure = null}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/blue", chance = 0.25}, + .{.structure = null, chance = 0.75}, }, }, } diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/base/4.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/base/4.zig.zon index bd8bdbec..5f20212e 100644 --- a/assets/cubyz/sbb/mushroom/big/toadstool/base/4.zig.zon +++ b/assets/cubyz/sbb/mushroom/big/toadstool/base/4.zig.zon @@ -8,16 +8,16 @@ .{.structure = "cubyz:mushroom/big/toadstool/small_cap"}, }, .crimson = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/red"}, - .{.structure = null}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/red", chance = 0.25}, + .{.structure = null, chance = 0.75}, }, .green = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/green"}, - .{.structure = null}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/green", chance = 0.25}, + .{.structure = null, chance = 0.75}, }, .blue = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/blue"}, - .{.structure = null}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/blue", chance = 0.25}, + .{.structure = null, chance = 0.75}, }, }, } diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/base/5.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/base/5.zig.zon index b511b0ec..f1bdc64e 100644 --- a/assets/cubyz/sbb/mushroom/big/toadstool/base/5.zig.zon +++ b/assets/cubyz/sbb/mushroom/big/toadstool/base/5.zig.zon @@ -5,16 +5,16 @@ .{.structure = "cubyz:mushroom/big/toadstool/large_cap"}, }, .crimson = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/red"}, - .{.structure = null}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/red", chance = 0.25}, + .{.structure = null, chance = 0.75}, }, .green = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/green"}, - .{.structure = null}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/green", chance = 0.25}, + .{.structure = null, chance = 0.75}, }, .blue = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/blue"}, - .{.structure = null}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/blue", chance = 0.25}, + .{.structure = null, chance = 0.75}, }, }, } diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/base/6.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/base/6.zig.zon index 0abd8dc9..7d372ac7 100644 --- a/assets/cubyz/sbb/mushroom/big/toadstool/base/6.zig.zon +++ b/assets/cubyz/sbb/mushroom/big/toadstool/base/6.zig.zon @@ -5,16 +5,16 @@ .{.structure = "cubyz:mushroom/big/toadstool/large_cap"}, }, .crimson = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/red"}, - .{.structure = null}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/red", chance = 0.25}, + .{.structure = null, chance = 0.75}, }, .green = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/green"}, - .{.structure = null}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/green", chance = 0.25}, + .{.structure = null, chance = 0.75}, }, .blue = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/blue"}, - .{.structure = null}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/blue", chance = 0.25}, + .{.structure = null, chance = 0.75}, }, }, } diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/large_cap.zon b/assets/cubyz/sbb/mushroom/big/toadstool/large_cap.zig.zon similarity index 100% rename from assets/cubyz/sbb/mushroom/big/toadstool/large_cap.zon rename to assets/cubyz/sbb/mushroom/big/toadstool/large_cap.zig.zon From 5dfa5185bef2be12ee37c61fe404a4ff185123d3 Mon Sep 17 00:00:00 2001 From: codemob-dev <69110900+codemob-dev@users.noreply.github.com> Date: Wed, 23 Jul 2025 19:16:48 -0400 Subject: [PATCH 13/17] More frequent mushrooms (as frequent as trees) --- assets/cubyz/biomes/cave/toadstool_big.zig.zon | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/cubyz/biomes/cave/toadstool_big.zig.zon b/assets/cubyz/biomes/cave/toadstool_big.zig.zon index fde9a9e4..0f0194ec 100644 --- a/assets/cubyz/biomes/cave/toadstool_big.zig.zon +++ b/assets/cubyz/biomes/cave/toadstool_big.zig.zon @@ -26,7 +26,7 @@ .id = "cubyz:sbb", .structure = "cubyz:mushroom/big/toadstool/base", .placeMode = .degradable, - .chance = 0.1, + .chance = 0.2, }, .{ .id = "cubyz:flower_patch", From 6d493835d460dcd333a64f06494ca8c7f1e230b3 Mon Sep 17 00:00:00 2001 From: codemob-dev <69110900+codemob-dev@users.noreply.github.com> Date: Thu, 24 Jul 2025 07:12:33 -0400 Subject: [PATCH 14/17] Added small toadstools --- assets/cubyz/biomes/cave/toadstool_big.zig.zon | 8 +++++++- .../sbb/mushroom/small/toadstool/base.zig.zon | 17 +++++++++++++++++ .../sbb/mushroom/small/toadstool/empty.blp | Bin 0 -> 58 bytes .../sbb/mushroom/small/toadstool/empty.zig.zon | 8 ++++++++ .../sbb/mushroom/small/toadstool/variant/0.blp | Bin 0 -> 92 bytes .../sbb/mushroom/small/toadstool/variant/1.blp | Bin 0 -> 105 bytes .../sbb/mushroom/small/toadstool/variant/2.blp | Bin 0 -> 92 bytes .../sbb/mushroom/small/toadstool/variant/3.blp | Bin 0 -> 121 bytes .../sbb/mushroom/small/toadstool/variant/4.blp | Bin 0 -> 120 bytes .../sbb/mushroom/small/toadstool/variant/5.blp | Bin 0 -> 78 bytes .../sbb/mushroom/small/toadstool/variant/6.blp | Bin 0 -> 113 bytes .../sbb/mushroom/small/toadstool/variant/7.blp | Bin 0 -> 126 bytes .../sbb/mushroom/small/toadstool/variant/8.blp | Bin 0 -> 107 bytes .../sbb/mushroom/small/toadstool/variant/9.blp | Bin 0 -> 117 bytes 14 files changed, 32 insertions(+), 1 deletion(-) create mode 100644 assets/cubyz/sbb/mushroom/small/toadstool/base.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/small/toadstool/empty.blp create mode 100644 assets/cubyz/sbb/mushroom/small/toadstool/empty.zig.zon create mode 100644 assets/cubyz/sbb/mushroom/small/toadstool/variant/0.blp create mode 100644 assets/cubyz/sbb/mushroom/small/toadstool/variant/1.blp create mode 100644 assets/cubyz/sbb/mushroom/small/toadstool/variant/2.blp create mode 100644 assets/cubyz/sbb/mushroom/small/toadstool/variant/3.blp create mode 100644 assets/cubyz/sbb/mushroom/small/toadstool/variant/4.blp create mode 100644 assets/cubyz/sbb/mushroom/small/toadstool/variant/5.blp create mode 100644 assets/cubyz/sbb/mushroom/small/toadstool/variant/6.blp create mode 100644 assets/cubyz/sbb/mushroom/small/toadstool/variant/7.blp create mode 100644 assets/cubyz/sbb/mushroom/small/toadstool/variant/8.blp create mode 100644 assets/cubyz/sbb/mushroom/small/toadstool/variant/9.blp diff --git a/assets/cubyz/biomes/cave/toadstool_big.zig.zon b/assets/cubyz/biomes/cave/toadstool_big.zig.zon index 0f0194ec..0b426b41 100644 --- a/assets/cubyz/biomes/cave/toadstool_big.zig.zon +++ b/assets/cubyz/biomes/cave/toadstool_big.zig.zon @@ -26,12 +26,18 @@ .id = "cubyz:sbb", .structure = "cubyz:mushroom/big/toadstool/base", .placeMode = .degradable, + .chance = 0.15, + }, + .{ + .id = "cubyz:sbb", + .structure = "cubyz:mushroom/small/toadstool/base", + .placeMode = .degradable, .chance = 0.2, }, .{ .id = "cubyz:flower_patch", .block = "cubyz:toadstool", - .chance = 0.15, + .chance = 0.1, .width = 8, .variation = 4, .density = 0.06, diff --git a/assets/cubyz/sbb/mushroom/small/toadstool/base.zig.zon b/assets/cubyz/sbb/mushroom/small/toadstool/base.zig.zon new file mode 100644 index 00000000..a46867ef --- /dev/null +++ b/assets/cubyz/sbb/mushroom/small/toadstool/base.zig.zon @@ -0,0 +1,17 @@ +.{ + .blueprint = "cubyz:mushroom/small/toadstool/empty", + .children = .{ + .white = .{ + .{.structure = "cubyz:mushroom/small/toadstool/variant/0"}, + .{.structure = "cubyz:mushroom/small/toadstool/variant/1"}, + .{.structure = "cubyz:mushroom/small/toadstool/variant/2"}, + .{.structure = "cubyz:mushroom/small/toadstool/variant/3"}, + .{.structure = "cubyz:mushroom/small/toadstool/variant/4"}, + .{.structure = "cubyz:mushroom/small/toadstool/variant/5"}, + .{.structure = "cubyz:mushroom/small/toadstool/variant/6"}, + .{.structure = "cubyz:mushroom/small/toadstool/variant/7"}, + .{.structure = "cubyz:mushroom/small/toadstool/variant/8"}, + .{.structure = "cubyz:mushroom/small/toadstool/variant/9"}, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/small/toadstool/empty.blp b/assets/cubyz/sbb/mushroom/small/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/small/toadstool/empty.zig.zon b/assets/cubyz/sbb/mushroom/small/toadstool/empty.zig.zon new file mode 100644 index 00000000..6d52b173 --- /dev/null +++ b/assets/cubyz/sbb/mushroom/small/toadstool/empty.zig.zon @@ -0,0 +1,8 @@ +.{ + .blueprint = "cubyz:mushroom/small/toadstool/empty", + .children = .{ + .white = .{ + .{.structure = null}, + }, + }, +} diff --git a/assets/cubyz/sbb/mushroom/small/toadstool/variant/0.blp b/assets/cubyz/sbb/mushroom/small/toadstool/variant/0.blp new file mode 100644 index 0000000000000000000000000000000000000000..b4cd947540256214ec272fa3d50d17e36fcc1210 GIT binary patch literal 92 zcmZQz0D~9?76wKjWJyj)5b)6RUA1PDmY>(9^ZKWJ&YuB^wRJpwvi$Y*C+f>YrayW9 p+`zz~!?ER|(??I&&dQUL9K0MepB!Og6G%u(NJ&Tok_icH3;>EVA@%?O literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/small/toadstool/variant/1.blp b/assets/cubyz/sbb/mushroom/small/toadstool/variant/1.blp new file mode 100644 index 0000000000000000000000000000000000000000..db9f15c2317a7d3518cc46b72118b07f13be96df GIT binary patch literal 105 zcmZQz0D~+BRt6>pMg|tw?u%SZ3L?(_Vve?~j{6^0+Y86B3LlZqa;&YLvY^@aO%Ai) zKh5{&w{}LX)m+9jhyAovZn$_<_}K%g4?6RLVn3EYu$VP{*@k!7&+j(R=aK# I(9^ZKWJ&YuB^wRJpwvi$Y*C+f>YrayW9 r+`zz~!?ER|(??I&&dQUL9K0MepB!Og6G%u(NJ&UbU`l3VOJe{4hM6Ho literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/small/toadstool/variant/3.blp b/assets/cubyz/sbb/mushroom/small/toadstool/variant/3.blp new file mode 100644 index 0000000000000000000000000000000000000000..93c79238178b34a258c4b382c26185a2316ae9df GIT binary patch literal 121 zcmV-<0EYhn00000003$L1pos80ssYli@gd0F%Sml?zGTKP<#lR>wOu?<{$<_R+1>_ z(+dXU58`y+>@2XfXSv??7xfdct*fY+a#0NjNhaDOu>QVSa{^XXXOU5pcRs$-pl)nA b|CrM;&;fmOo5y}K&@*HA;VO$Czi-?Dm9{gT literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/small/toadstool/variant/4.blp b/assets/cubyz/sbb/mushroom/small/toadstool/variant/4.blp new file mode 100644 index 0000000000000000000000000000000000000000..68a72fc887881b3673f72f5f38ec829480fd78a2 GIT binary patch literal 120 zcmV-;0Ehno00000003$L1pop70{{hWi!lqrFc?Iit&@`?ba!*>?w^r-Dbzs8CrK3a z*NX-c(Y%}P9S3aeO&-tFUEKt1bBiLQ1~)qo?6X^R9+R3WCe;NPvM%Z@!FYSAhq_pE arOk?tj)DGfInaLs>*97l{mrrQ{o(~0Co{PK literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/small/toadstool/variant/5.blp b/assets/cubyz/sbb/mushroom/small/toadstool/variant/5.blp new file mode 100644 index 0000000000000000000000000000000000000000..7514798a1e1a3aec1ddcab66a318ecb8e943a7a8 GIT binary patch literal 78 zcmZQz00UPBW(GzeWKK><5b)6RUA1PDmY>(9^ZKWJ&YuB^HFr#XqP|RI`jh9+kEn~P cK2uFMFfia)d|E|a%%Fk6m|2;bnOT?t0AlK=n! literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/small/toadstool/variant/6.blp b/assets/cubyz/sbb/mushroom/small/toadstool/variant/6.blp new file mode 100644 index 0000000000000000000000000000000000000000..89425d8e6608fe31e9c3fd35aaaa2a5c8ae0f8fd GIT binary patch literal 113 zcmZQz0D~+BRt9DuWJ^v+c;KbyyK2oQt<&dy5)%>x+CF%F5)SV2{`9%{(PUw62?+@n zg+oU@J%9alo%wQRCC5_BpD%wEJmulxNqV8CBC7gKHQhjfU&1q>d(FJg#+i+hUYiVV P7;kuB&>i!6BNGDvvd$~V literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/small/toadstool/variant/7.blp b/assets/cubyz/sbb/mushroom/small/toadstool/variant/7.blp new file mode 100644 index 0000000000000000000000000000000000000000..ff6f38ee1bd373ead1dbf6da0be3bf434a81b131 GIT binary patch literal 126 zcmZQz0D~+BRt9DuWKT{=c;KbyyK2oQt<&dy5)%>x+CF%F5)SV2{`9%{(PUw62?+@n zg+oU@J%9alo%wQRCC5_BpD%wEJmulxNqV8CBC7gKHQitWpG0TC;Ufo595{2}$bmBo dM-DUv&sSpRW;SN#Znll!)hq7Y*soK|002;jF<<}y literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/small/toadstool/variant/8.blp b/assets/cubyz/sbb/mushroom/small/toadstool/variant/8.blp new file mode 100644 index 0000000000000000000000000000000000000000..f1fa716143e786dbd874f9628b9ac39d485c4123 GIT binary patch literal 107 zcmZQz0D~+BRt9DuWJ^v+c;KbyyK2oQt<&dy5)%>x+CF%F5)SV2{`9%{(PUw62?+@n zg+oU@J%9alo%wQRCC5_BpD%wEJmulxNqV8CBC7gKHQgYAy(dH@Jt-kAp>2{*f=}${ Ija|$P0In7&DF6Tf literal 0 HcmV?d00001 diff --git a/assets/cubyz/sbb/mushroom/small/toadstool/variant/9.blp b/assets/cubyz/sbb/mushroom/small/toadstool/variant/9.blp new file mode 100644 index 0000000000000000000000000000000000000000..39d357193f0f43799539cd5411bd875853ecaad7 GIT binary patch literal 117 zcmZQz0D~+BRt9DuWJ^v+c;KbyyK2oQt<&dy5)%>x+CF%F5)SV2{`9%{(PUw62?+@n zg+oU@J%9alo%wQRCC5_BpD%wEJmulxNqV8CBC7gKHQgYAy~m|XvD?_tz}UdqQ;bcK SO>9k7PGQGmv-vvT85jUB94Zh1 literal 0 HcmV?d00001 From d69047108dd9514a3b9edd84bd3954e87df607f0 Mon Sep 17 00:00:00 2001 From: codemob-dev <69110900+codemob-dev@users.noreply.github.com> Date: Fri, 25 Jul 2025 16:14:33 -0400 Subject: [PATCH 15/17] remove empty_horizontal --- .../sbb/mushroom/big/toadstool/base/0.zig.zon | 9 ++++++--- .../sbb/mushroom/big/toadstool/base/1.zig.zon | 9 ++++++--- .../sbb/mushroom/big/toadstool/base/2.zig.zon | 9 ++++++--- .../sbb/mushroom/big/toadstool/base/3.zig.zon | 9 ++++++--- .../sbb/mushroom/big/toadstool/base/4.zig.zon | 9 ++++++--- .../sbb/mushroom/big/toadstool/base/5.zig.zon | 9 ++++++--- .../sbb/mushroom/big/toadstool/base/6.zig.zon | 9 ++++++--- .../sbb/mushroom/big/toadstool/branch/blue.zig.zon | 9 --------- .../mushroom/big/toadstool/branch/green.zig.zon | 9 --------- .../sbb/mushroom/big/toadstool/branch/red.zig.zon | 9 --------- .../mushroom/big/toadstool/empty_horizontal.blp | Bin 63 -> 0 bytes .../big/toadstool/empty_horizontal.zig.zon | 8 -------- 12 files changed, 42 insertions(+), 56 deletions(-) delete mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/branch/blue.zig.zon delete mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/branch/green.zig.zon delete mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/branch/red.zig.zon delete mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/empty_horizontal.blp delete mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/empty_horizontal.zig.zon diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/base/0.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/base/0.zig.zon index 0e10b352..e8c4cecb 100644 --- a/assets/cubyz/sbb/mushroom/big/toadstool/base/0.zig.zon +++ b/assets/cubyz/sbb/mushroom/big/toadstool/base/0.zig.zon @@ -5,15 +5,18 @@ .{.structure = "cubyz:mushroom/big/toadstool/large_cap"}, }, .crimson = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/red", chance = 0.25}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/red0", chance = 0.125}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/red1", chance = 0.125}, .{.structure = null, chance = 0.75}, }, .green = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/green", chance = 0.25}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/green0", chance = 0.125}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/green1", chance = 0.125}, .{.structure = null, chance = 0.75}, }, .blue = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/blue", chance = 0.25}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/blue0", chance = 0.125}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/blue1", chance = 0.125}, .{.structure = null, chance = 0.75}, }, }, diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/base/1.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/base/1.zig.zon index fdc70355..26d0bfc9 100644 --- a/assets/cubyz/sbb/mushroom/big/toadstool/base/1.zig.zon +++ b/assets/cubyz/sbb/mushroom/big/toadstool/base/1.zig.zon @@ -5,15 +5,18 @@ .{.structure = "cubyz:mushroom/big/toadstool/large_cap"}, }, .crimson = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/red", chance = 0.25}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/red0", chance = 0.125}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/red1", chance = 0.125}, .{.structure = null, chance = 0.75}, }, .green = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/green", chance = 0.25}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/green0", chance = 0.125}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/green1", chance = 0.125}, .{.structure = null, chance = 0.75}, }, .blue = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/blue", chance = 0.25}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/blue0", chance = 0.125}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/blue1", chance = 0.125}, .{.structure = null, chance = 0.75}, }, }, diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/base/2.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/base/2.zig.zon index 02525612..1c53b0b6 100644 --- a/assets/cubyz/sbb/mushroom/big/toadstool/base/2.zig.zon +++ b/assets/cubyz/sbb/mushroom/big/toadstool/base/2.zig.zon @@ -5,15 +5,18 @@ .{.structure = "cubyz:mushroom/big/toadstool/large_cap"}, }, .crimson = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/red", chance = 0.25}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/red0", chance = 0.125}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/red1", chance = 0.125}, .{.structure = null, chance = 0.75}, }, .green = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/green", chance = 0.25}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/green0", chance = 0.125}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/green1", chance = 0.125}, .{.structure = null, chance = 0.75}, }, .blue = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/blue", chance = 0.25}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/blue0", chance = 0.125}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/blue1", chance = 0.125}, .{.structure = null, chance = 0.75}, }, }, diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/base/3.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/base/3.zig.zon index f59c6e12..67ce7071 100644 --- a/assets/cubyz/sbb/mushroom/big/toadstool/base/3.zig.zon +++ b/assets/cubyz/sbb/mushroom/big/toadstool/base/3.zig.zon @@ -5,15 +5,18 @@ .{.structure = "cubyz:mushroom/big/toadstool/large_cap"}, }, .crimson = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/red", chance = 0.25}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/red0", chance = 0.125}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/red1", chance = 0.125}, .{.structure = null, chance = 0.75}, }, .green = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/green", chance = 0.25}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/green0", chance = 0.125}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/green1", chance = 0.125}, .{.structure = null, chance = 0.75}, }, .blue = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/blue", chance = 0.25}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/blue0", chance = 0.125}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/blue1", chance = 0.125}, .{.structure = null, chance = 0.75}, }, }, diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/base/4.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/base/4.zig.zon index 5f20212e..e614480f 100644 --- a/assets/cubyz/sbb/mushroom/big/toadstool/base/4.zig.zon +++ b/assets/cubyz/sbb/mushroom/big/toadstool/base/4.zig.zon @@ -8,15 +8,18 @@ .{.structure = "cubyz:mushroom/big/toadstool/small_cap"}, }, .crimson = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/red", chance = 0.25}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/red0", chance = 0.125}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/red1", chance = 0.125}, .{.structure = null, chance = 0.75}, }, .green = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/green", chance = 0.25}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/green0", chance = 0.125}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/green1", chance = 0.125}, .{.structure = null, chance = 0.75}, }, .blue = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/blue", chance = 0.25}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/blue0", chance = 0.125}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/blue1", chance = 0.125}, .{.structure = null, chance = 0.75}, }, }, diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/base/5.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/base/5.zig.zon index f1bdc64e..2f381c95 100644 --- a/assets/cubyz/sbb/mushroom/big/toadstool/base/5.zig.zon +++ b/assets/cubyz/sbb/mushroom/big/toadstool/base/5.zig.zon @@ -5,15 +5,18 @@ .{.structure = "cubyz:mushroom/big/toadstool/large_cap"}, }, .crimson = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/red", chance = 0.25}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/red0", chance = 0.125}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/red1", chance = 0.125}, .{.structure = null, chance = 0.75}, }, .green = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/green", chance = 0.25}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/green0", chance = 0.125}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/green1", chance = 0.125}, .{.structure = null, chance = 0.75}, }, .blue = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/blue", chance = 0.25}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/blue0", chance = 0.125}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/blue1", chance = 0.125}, .{.structure = null, chance = 0.75}, }, }, diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/base/6.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/base/6.zig.zon index 7d372ac7..06fb30b3 100644 --- a/assets/cubyz/sbb/mushroom/big/toadstool/base/6.zig.zon +++ b/assets/cubyz/sbb/mushroom/big/toadstool/base/6.zig.zon @@ -5,15 +5,18 @@ .{.structure = "cubyz:mushroom/big/toadstool/large_cap"}, }, .crimson = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/red", chance = 0.25}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/red0", chance = 0.125}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/red1", chance = 0.125}, .{.structure = null, chance = 0.75}, }, .green = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/green", chance = 0.25}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/green0", chance = 0.125}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/green1", chance = 0.125}, .{.structure = null, chance = 0.75}, }, .blue = { - .{.structure = "cubyz:mushroom/big/toadstool/branch/blue", chance = 0.25}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/blue0", chance = 0.125}, + .{.structure = "cubyz:mushroom/big/toadstool/branch/blue1", chance = 0.125}, .{.structure = null, chance = 0.75}, }, }, diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/branch/blue.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/branch/blue.zig.zon deleted file mode 100644 index b778c838..00000000 --- a/assets/cubyz/sbb/mushroom/big/toadstool/branch/blue.zig.zon +++ /dev/null @@ -1,9 +0,0 @@ -.{ - .blueprint = "cubyz:mushroom/big/toadstool/empty_horizontal", - .children = .{ - .white = .{ - .{.structure = "cubyz:mushroom/big/toadstool/branch/blue0"}, - .{.structure = "cubyz:mushroom/big/toadstool/branch/blue1"}, - }, - }, -} diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/branch/green.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/branch/green.zig.zon deleted file mode 100644 index a85a248e..00000000 --- a/assets/cubyz/sbb/mushroom/big/toadstool/branch/green.zig.zon +++ /dev/null @@ -1,9 +0,0 @@ -.{ - .blueprint = "cubyz:mushroom/big/toadstool/empty_horizontal", - .children = .{ - .white = .{ - .{.structure = "cubyz:mushroom/big/toadstool/branch/green0"}, - .{.structure = "cubyz:mushroom/big/toadstool/branch/green1"}, - }, - }, -} diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/branch/red.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/branch/red.zig.zon deleted file mode 100644 index c78c9f98..00000000 --- a/assets/cubyz/sbb/mushroom/big/toadstool/branch/red.zig.zon +++ /dev/null @@ -1,9 +0,0 @@ -.{ - .blueprint = "cubyz:mushroom/big/toadstool/empty_horizontal", - .children = .{ - .white = .{ - .{.structure = "cubyz:mushroom/big/toadstool/branch/red0"}, - .{.structure = "cubyz:mushroom/big/toadstool/branch/red1"}, - }, - }, -} diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/empty_horizontal.blp b/assets/cubyz/sbb/mushroom/big/toadstool/empty_horizontal.blp deleted file mode 100644 index d4cff3a2284126b53ea46b52ab97d2d35f56f763..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 63 zcmZQz00UhHCLm;FU`$R(5b)LWUA1PDmY>%p|8pnKcwW>$e?rGI6)550@kBgzS^6_W M17iaNAZB6!0PT_zY5)KL diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/empty_horizontal.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/empty_horizontal.zig.zon deleted file mode 100644 index 40b5821b..00000000 --- a/assets/cubyz/sbb/mushroom/big/toadstool/empty_horizontal.zig.zon +++ /dev/null @@ -1,8 +0,0 @@ -.{ - .blueprint = "cubyz:mushroom/big/toadstool/empty_horizontal", - .children = .{ - .white = .{ - .{.structure = null}, - }, - }, -} From 2b436e87e27dd6fc9f3b9d9b4744161d6796a9cd Mon Sep 17 00:00:00 2001 From: codemob-dev <69110900+codemob-dev@users.noreply.github.com> Date: Sat, 26 Jul 2025 16:48:32 -0400 Subject: [PATCH 16/17] Remove hollow mushroom --- .../sbb/mushroom/big/toadstool/base.zig.zon | 1 - .../sbb/mushroom/big/toadstool/base/0.blp | Bin 204 -> 172 bytes .../sbb/mushroom/big/toadstool/base/6.zig.zon | 23 ------------------ blueprints/0.blp | Bin 0 -> 204 bytes blueprints/1.blp | Bin 0 -> 191 bytes blueprints/2.blp | Bin 0 -> 163 bytes blueprints/3.blp | Bin 0 -> 192 bytes blueprints/4.blp | Bin 0 -> 228 bytes blueprints/5.blp | Bin 0 -> 172 bytes .../big/toadstool/base => blueprints}/6.blp | Bin 10 files changed, 24 deletions(-) delete mode 100644 assets/cubyz/sbb/mushroom/big/toadstool/base/6.zig.zon create mode 100644 blueprints/0.blp create mode 100644 blueprints/1.blp create mode 100644 blueprints/2.blp create mode 100644 blueprints/3.blp create mode 100644 blueprints/4.blp create mode 100644 blueprints/5.blp rename {assets/cubyz/sbb/mushroom/big/toadstool/base => blueprints}/6.blp (100%) diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/base.zig.zon b/assets/cubyz/sbb/mushroom/big/toadstool/base.zig.zon index 6203cf3f..f09946b0 100644 --- a/assets/cubyz/sbb/mushroom/big/toadstool/base.zig.zon +++ b/assets/cubyz/sbb/mushroom/big/toadstool/base.zig.zon @@ -8,7 +8,6 @@ .{.structure = "cubyz:mushroom/big/toadstool/base/3"}, .{.structure = "cubyz:mushroom/big/toadstool/base/4"}, .{.structure = "cubyz:mushroom/big/toadstool/base/5"}, - .{.structure = "cubyz:mushroom/big/toadstool/base/6"}, }, }, } diff --git a/assets/cubyz/sbb/mushroom/big/toadstool/base/0.blp b/assets/cubyz/sbb/mushroom/big/toadstool/base/0.blp index fb25e6ab22f583eb6f1571c0c425d5f2e41e1d3e..2d841c6105ca9398a325b06e74e13378ea1b04b7 100644 GIT binary patch literal 172 zcmV;d08{?}00000005o<2LJ^C1po)NkiiPVFc3t?w0iI)sQ4MZ`!}X7=|b#6k}CT3 z5`r2+Td~%G9I|hBW?2C1vXi&_@xoLA*oB{!vM3wURUvg(1K5VTW>q*oRn{?U0Q%S=xo`~{7)Gcvv~=KksL9|Jsabnv_$r$Xa3^x3r=Ei aHm>D8nNyVR5NG~!lc~Er^8{9NSUvzl0ZkwP literal 204 zcmV;-05ksp00000006512ml2D1po-GQr*geKoC8ypI_vaV9{;R19;!txGK7^HLz+? zPap2~W8%7$9T;Th%$zwR3n0u|e!1>XBys?;$t0CYLup<&L=wQplxxnDtP(O$G9?Z* z9RaL|RH=%hBbJ6pg#r-0x=4vqj82{_(G&nyLxRh;tIq?2r@ubfY^^DM8+>>=Y<;nV z-#YX^MF9UTH+%ndc%wdoCm-CsJ_7i6-UmIouyT>(zMVtA?XBys?;$t0CYLup<&L=wQplxxnDtP(O$G9?Z* z9RaL|RH=%hBbJ6pg#r-0x=4vqj82{_(G&nyLxRh;tIq?2r@ubfY^^DM8+>>=Y<;nV z-#YX^MF9UTH+%ndc%wdoCm-CsJ_7i6-UmIouyT>(zMVtA?bDw2lMtZs-jfc-$f zsk1O?B})K1+o&*kUIBmmFx1YR81Fqum{qpOHG|-J~)EE^u7>)_1_C2xEJ3D t;ZJ$-S6&1THu-@?uj3=_(a|&X_@;K=YLsX1FzvDQ)?*Cj@MZIMegeO8Qq=$e literal 0 HcmV?d00001 diff --git a/blueprints/2.blp b/blueprints/2.blp new file mode 100644 index 0000000000000000000000000000000000000000..f39d4790065a505173301ce9c9db9c621ff2b261 GIT binary patch literal 163 zcmV;U09^k700000005o<2LJ;A1ONw}kITx!FcgHp-u}hE5>$MQ?tL56hW0@8Krf0u zy|h7;G%7e}lVmdAB*1?)n(J+UR;huV-}T0nRV%J8t4@x+o`AKtoHpg4hq@nB9k2}( zmsSP~te%E;(#XWvgqMvQZ4AJ$NSyeM@ z0CQI%bfW+)yZYtnR+zMu1%UXfU_&|C<_ovWp`cp%h}t2-d#jG4?g8UXiEEt|j3AEROb&;64&X;_)BxU7uP0A6~!lroGmrQ=ZQ zI-&TqNE!gI1fS#p9!`QORH|Aon7$kp>bo>K<@1}Vs@-^haIo$!z&Cp^FzX|BOm;a0 zSa*4L7E1HM@I>ga`QK+W2hOT2{LE+CsTg~r;CA{Op$}_5X4h_q3y87d;9WD0&)}y6aRgMphb<7&T zChm}WXaQ_v{oIlB#_DdcAw_+vSedr Date: Sat, 2 Aug 2025 09:32:39 -0400 Subject: [PATCH 17/17] Remove blueprints --- blueprints/0.blp | Bin 204 -> 0 bytes blueprints/1.blp | Bin 191 -> 0 bytes blueprints/2.blp | Bin 163 -> 0 bytes blueprints/3.blp | Bin 192 -> 0 bytes blueprints/4.blp | Bin 228 -> 0 bytes blueprints/5.blp | Bin 172 -> 0 bytes blueprints/6.blp | Bin 172 -> 0 bytes 7 files changed, 0 insertions(+), 0 deletions(-) delete mode 100644 blueprints/0.blp delete mode 100644 blueprints/1.blp delete mode 100644 blueprints/2.blp delete mode 100644 blueprints/3.blp delete mode 100644 blueprints/4.blp delete mode 100644 blueprints/5.blp delete mode 100644 blueprints/6.blp diff --git a/blueprints/0.blp b/blueprints/0.blp deleted file mode 100644 index fb25e6ab22f583eb6f1571c0c425d5f2e41e1d3e..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 204 zcmV;-05ksp00000006512ml2D1po-GQr*geKoC8ypI_vaV9{;R19;!txGK7^HLz+? zPap2~W8%7$9T;Th%$zwR3n0u|e!1>XBys?;$t0CYLup<&L=wQplxxnDtP(O$G9?Z* z9RaL|RH=%hBbJ6pg#r-0x=4vqj82{_(G&nyLxRh;tIq?2r@ubfY^^DM8+>>=Y<;nV z-#YX^MF9UTH+%ndc%wdoCm-CsJ_7i6-UmIouyT>(zMVtA?bDw2lMtZs-jfc-$f zsk1O?B})K1+o&*kUIBmmFx1YR81Fqum{qpOHG|-J~)EE^u7>)_1_C2xEJ3D t;ZJ$-S6&1THu-@?uj3=_(a|&X_@;K=YLsX1FzvDQ)?*Cj@MZIMegeO8Qq=$e diff --git a/blueprints/2.blp b/blueprints/2.blp deleted file mode 100644 index f39d4790065a505173301ce9c9db9c621ff2b261..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 163 zcmV;U09^k700000005o<2LJ;A1ONw}kITx!FcgHp-u}hE5>$MQ?tL56hW0@8Krf0u zy|h7;G%7e}lVmdAB*1?)n(J+UR;huV-}T0nRV%J8t4@x+o`AKtoHpg4hq@nB9k2}( zmsSP~te%E;(#XWvgqMvQZ4AJ$NSyeM@ z0CQI%bfW+)yZYtnR+zMu1%UXfU_&|C<_ovWp`cp%h}t2-d#jG4?g8UXiEEt|j3AEROb&;64&X;_)BxU7uP0A6~!lroGmrQ=ZQ zI-&TqNE!gI1fS#p9!`QORH|Aon7$kp>bo>K<@1}Vs@-^haIo$!z&Cp^FzX|BOm;a0 zSa*4L7E1HM@I>ga`QK+W2hOT2{LE+CsTg~r;CA{Op$}_5X4h_q3y87d;9WD0&)}y6aRgMphb<7&T zChm}WXaQ_v{oIlB#_DdcAw_+vSedrq*oRn{?U0Q%S=xo`~{7)Gcvv~=KksL9|Jsabnv_$r$Xa3^x3r=Ei aHm>D8nNyVR5NG~!lc~Er^8{9NSUvzl0ZkwP