diff --git a/assets/cubyz/biomes/cave/mantle/chasm.zig.zon b/assets/cubyz/biomes/cave/mantle/chasm.zig.zon index 895b93d583..0402c7cc99 100644 --- a/assets/cubyz/biomes/cave/mantle/chasm.zig.zon +++ b/assets/cubyz/biomes/cave/mantle/chasm.zig.zon @@ -42,6 +42,15 @@ .depth = 4, .smoothness = 0.1, }, + .{ + .id = "cubyz:ground_patch", + .block = "cubyz:pyrolite/cracked", + .chance = 0.075, + .width = 3, + .variation = 3, + .depth = 13, + .smoothness = 0.33, + }, }, .caveModels = .{ .{ diff --git a/assets/cubyz/blocks/pyrolite/cracked.zig.zon b/assets/cubyz/blocks/pyrolite/cracked.zig.zon new file mode 100644 index 0000000000..798b348aad --- /dev/null +++ b/assets/cubyz/blocks/pyrolite/cracked.zig.zon @@ -0,0 +1,17 @@ +.{ + .onUpdate = .{ + .type = .decay, + .drops = .{ + .{.chance = 0.00, .items = .{"cubyz:apple"}}, + }, + }, + .drops = .{ + .{.chance = 0.00, .items = .{"cubyz:apple"}}, + }, + .rotation = "cubyz:decayable", + .blockHealth = 0.5, + .degradable = true, + .absorbedLight = 0x363436, + .model = "cubyz:cube", + .texture = "cubyz:pyrolite/cracked", +} diff --git a/assets/cubyz/blocks/textures/pyrolite/cracked.png b/assets/cubyz/blocks/textures/pyrolite/cracked.png new file mode 100644 index 0000000000..eade0cda19 Binary files /dev/null and b/assets/cubyz/blocks/textures/pyrolite/cracked.png differ