Skip to content
Open
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
6493f1b
The mantle
careeoki Jan 4, 2026
ea3d987
More mantle biomes
careeoki Jan 5, 2026
cb45e5e
Start the blocks and tweak base
careeoki Jan 5, 2026
89a92c7
More blocks but now im getting distracted bu UI stuff
careeoki Jan 6, 2026
56c2720
more
careeoki Jan 7, 2026
f070bc3
no stone forest in mantle
careeoki Jan 8, 2026
1811763
Merge branch 'master' of https://github.com/pixelguys/Cubyz into mantle
careeoki Jan 8, 2026
0aa3a44
Start making SBBs
careeoki Jan 8, 2026
1627b63
more pools
careeoki Jan 9, 2026
be3ad1a
No basalt or lava caves, more sbbs
careeoki Jan 10, 2026
0a01b4e
update palette of other blocks
careeoki Jan 10, 2026
2934a23
Tweaks
careeoki Jan 10, 2026
2717f78
change palette for the last time (i swear)
careeoki Jan 10, 2026
e7063fa
Remove tunnels and tweak crystals
careeoki Jan 10, 2026
5dc3463
Ash block
careeoki Jan 11, 2026
4e236b6
Ash biome with ruins
careeoki Jan 11, 2026
6f241b6
one more ruin
careeoki Jan 12, 2026
11c44af
Polish ash texture
careeoki Jan 12, 2026
1cd14b1
Merge branch 'master' of https://github.com/pixelguys/Cubyz into mantle
careeoki Jan 14, 2026
dfe9164
change where mantle starts, basic core
careeoki Jan 14, 2026
65c0b2a
reduce health of mantle blocks as they are earlier in progression
careeoki Jan 14, 2026
95a226d
Rename mantle to pyrolite, update ruins
careeoki Jan 16, 2026
450dc6f
Merge branch 'master' of https://github.com/pixelguys/Cubyz into mantle
careeoki Jan 17, 2026
ec61394
Merge branch 'master' of https://github.com/pixelguys/Cubyz into mantle
careeoki Jan 22, 2026
29f02f2
Update to new stalagmites
careeoki Jan 22, 2026
fa20e28
Tweak numbers
careeoki Jan 22, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion assets/cubyz/biomes/cave/basalt.zig.zon
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.{
.isCave = true,
.maxHeight = -1000,
.minHeight = -48250,
.minHeight = -15000,
.chance = 0.2,
.fogDensity = 8,

Expand Down
2 changes: 1 addition & 1 deletion assets/cubyz/biomes/cave/cave.zig.zon
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.{
.isCave = true,
.maxHeight = 0,
.minHeight = -48250,
.minHeight = -15000,

.fogDensity = 2,

Expand Down
2 changes: 1 addition & 1 deletion assets/cubyz/biomes/cave/crystal.zig.zon
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.{
.isCave = true,
.maxHeight = -512,
.minHeight = -48250,
.minHeight = -15000,

.chance = 0.2,

Expand Down
2 changes: 1 addition & 1 deletion assets/cubyz/biomes/cave/crystal_forest.zig.zon
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.{
.isCave = true,
.maxHeight = -512,
.minHeight = -48250,
.minHeight = -15000,
.chance = 0.01,

.caves = -0.1,
Expand Down
2 changes: 1 addition & 1 deletion assets/cubyz/biomes/cave/curl_forest.zig.zon
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.{
.isCave = true,
.maxHeight = -512,
.minHeight = -48250,
.minHeight = -15000,

.fogDensity = 2,

Expand Down
2 changes: 1 addition & 1 deletion assets/cubyz/biomes/cave/ice_cave.zig.zon
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.{
.isCave = true,
.maxHeight = -256,
.minHeight = -48250,
.minHeight = -15000,
.chance = 0.2,
.caves = -0.02,
.fogDensity = 20,
Expand Down
2 changes: 1 addition & 1 deletion assets/cubyz/biomes/cave/lava_cave.zig.zon
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.{
.isCave = true,
.maxHeight = -1500,
.minHeight = -48250,
.minHeight = -15000,
.fogDensity = 20,
.chance = 0.1,
.fogColor = 0x51240c,
Expand Down
8 changes: 8 additions & 0 deletions assets/cubyz/biomes/cave/mantle/_defaults.zig.zon
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
.{
.isCave = true,
.maxHeight = -15000,
.minHeight = -48250,
.fogDensity = 25,
.fogColor = 0x3d1a11,
.stoneBlock = "cubyz:mantle/base",
}
40 changes: 40 additions & 0 deletions assets/cubyz/biomes/cave/mantle/ash.zig.zon
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
.{
.chance = 0.3,
.caves = -0.03,
.soilCreep = 1,
.ground_structure = .{
"2 to 4 cubyz:ash",
},
.structures = .{
.{
.id = "cubyz:sbb",
.structure = "cubyz:cave/mantle/stalagmite",
.placeMode = .degradable,
.chance = 0.04,
},
.{
.id = "cubyz:sbb",
.structure = "cubyz:cave/mantle/ruins",
.placeMode = .degradable,
.chance = 0.003,
},
.{
.id = "cubyz:ground_patch",
.block = "cubyz:magma",
.chance = 0.03,
.width = 4,
.variation = 2,
.depth = 2,
.smoothness = 0.8,
},
.{
.id = "cubyz:ground_patch",
.block = "cubyz:magma",
.chance = 0.08,
.width = 2,
.variation = 1,
.depth = 2,
.smoothness = 1,
},
},
}
36 changes: 36 additions & 0 deletions assets/cubyz/biomes/cave/mantle/chasm.zig.zon
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
.{
.chance = 0.7,
.caves = -0.03,
.structures = .{
.{
.id = "cubyz:sbb",
.structure = "cubyz:cave/mantle/stalagmite",
.placeMode = .degradable,
.chance = 0.06,
},
.{
.id = "cubyz:sbb",
.structure = "cubyz:cave/mantle/lava_pool",
.placeMode = .degradable,
.chance = 0.02,
},
.{
.id = "cubyz:ground_patch",
.block = "cubyz:magma",
.chance = 0.04,
.width = 4,
.variation = 2,
.depth = 2,
.smoothness = 1,
},
.{
.id = "cubyz:ground_patch",
.block = "cubyz:ash",
.chance = 0.1,
.width = 5,
.variation = 5,
.depth = 4,
.smoothness = 0.1,
},
},
}
7 changes: 7 additions & 0 deletions assets/cubyz/biomes/cave/mantle/core.zig.zon
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
.{
.chance = 1000,
.caves = -0.03,
.stoneBlock = "cubyz:lava",
.maxHeight = -20000,
.minHeight = -20080,
}
16 changes: 16 additions & 0 deletions assets/cubyz/biomes/cave/mantle/crystal.zig.zon
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
.{
.chance = 0.02,
.caves = -0.05,
.crystals = 25,
.structures = .{
.{
.id = "cubyz:ground_patch",
.block = "cubyz:magma",
.chance = 0.05,
.width = 4,
.variation = 2,
.depth = 2,
.smoothness = 1,
},
},
}
56 changes: 56 additions & 0 deletions assets/cubyz/biomes/cave/mantle/lava.zig.zon
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
.{
.chance = 1,
.caves = -0.03,
.soilCreep = 2,
.ground_structure = .{
"2 cubyz:magma",
},
.structures = .{
.{
.id = "cubyz:sbb",
.structure = "cubyz:cave/mantle/stalagmite",
.placeMode = .degradable,
.chance = 0.03,
},
.{
.id = "cubyz:sbb",
.structure = "cubyz:cave/mantle/lava_pool",
.placeMode = .degradable,
.chance = 0.03,
},
.{
.id = "cubyz:stalagmite",
.block = "cubyz:mantle/base",
.chance = 0.2,
.size = 4,
.size_variation = 6,
},
.{
.id = "cubyz:ground_patch",
.block = "cubyz:lava",
.chance = 0.05,
.width = 4,
.variation = 2,
.depth = 2,
.smoothness = 1,
},
.{
.id = "cubyz:ground_patch",
.block = "cubyz:mantle/base",
.chance = 0.4,
.width = 3,
.variation = 2,
.depth = 2,
.smoothness = 1,
},
.{
.id = "cubyz:ground_patch",
.block = "cubyz:mantle/base",
.chance = 0.08,
.width = 6,
.variation = 5,
.depth = 2,
.smoothness = 1,
},
},
}
2 changes: 1 addition & 1 deletion assets/cubyz/biomes/cave/mushroom/big/_defaults.zig.zon
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.{
.isCave = true,
.maxHeight = -512,
.minHeight = -48250,
.minHeight = -15000,
.music = "cubyz:la_kubisa_caverna",
.ground_structure = .{
"2 to 3 cubyz:soil",
Expand Down
2 changes: 1 addition & 1 deletion assets/cubyz/biomes/cave/mushroom/glimmergill.zig.zon
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
.{
.maxHeight = -200,
.minHeight = -48250,
.minHeight = -15000,
.chance = 0.05,
.structures = .{
.{
Expand Down
2 changes: 1 addition & 1 deletion assets/cubyz/biomes/cave/rare/phantasmal.zig.zon
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
.fogColor = 0x000C14,
.chance = 0.01,
.maxHeight = -5000,
.minHeight = -48250,
.minHeight = -15000,
.music = "cubyz:cubyz",
.stoneBlock = "cubyz:chalk/black",

Expand Down
2 changes: 1 addition & 1 deletion assets/cubyz/biomes/cave/stalagmite_cave.zig.zon
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.{
.isCave = true,
.maxHeight = -256,
.minHeight = -48250,
.minHeight = -15000,
.chance = 0.2,

.fogDensity = 10,
Expand Down
2 changes: 1 addition & 1 deletion assets/cubyz/biomes/cave/stone_forest.zig.zon
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

.chance = 0.01,
.maxHeight = -50,
.minHeight = -48250,
.minHeight = -15000,
.caves = -0.2,

.music = "cubyz:heart-of-the-beast",
Expand Down
15 changes: 15 additions & 0 deletions assets/cubyz/biomes/volcano/base.zig.zon
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,20 @@

.maxSubBiomeCount = 1,

.soilCreep = 1,
.ground_structure = .{
"2 to 4 cubyz:ash",
},
.stoneBlock = "cubyz:basalt/base",
.structures = .{
.{
.id = "cubyz:ground_patch",
.block = "cubyz:basalt/base",
.chance = 0.1,
.width = 5,
.variation = 5,
.depth = 4,
.smoothness = 0.1,
},
},
}
15 changes: 15 additions & 0 deletions assets/cubyz/biomes/volcano/slope1.zig.zon
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,20 @@

.maxSubBiomeCount = 1,

.soilCreep = 1,
.ground_structure = .{
"2 to 4 cubyz:ash",
},
.stoneBlock = "cubyz:basalt/base",
.structures = .{
.{
.id = "cubyz:ground_patch",
.block = "cubyz:basalt/base",
.chance = 0.1,
.width = 5,
.variation = 5,
.depth = 4,
.smoothness = 0.1,
},
},
}
15 changes: 15 additions & 0 deletions assets/cubyz/biomes/volcano/slope2.zig.zon
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,20 @@

.maxSubBiomeCount = 1,

.soilCreep = 1,
.ground_structure = .{
"2 to 4 cubyz:ash",
},
.stoneBlock = "cubyz:basalt/base",
.structures = .{
.{
.id = "cubyz:ground_patch",
.block = "cubyz:basalt/base",
.chance = 0.1,
.width = 5,
.variation = 5,
.depth = 4,
.smoothness = 0.1,
},
},
}
10 changes: 10 additions & 0 deletions assets/cubyz/blocks/ash.zig.zon
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
.{
.tags = .{.diggable},
.blockHealth = 7,
.drops = .{
.{.items = .{.auto}},
},
.model = "cubyz:cube",
.rotation = "cubyz:stairs",
.texture = "cubyz:ash",
}
32 changes: 32 additions & 0 deletions assets/cubyz/blocks/mantle/_defaults.zig.zon
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
.{
.tags = .{.mineable, .mantle},
.blockHealth = 40,
.blockResistance = 25,
.drops = .{
.{.items = .{.auto}},
},
.item = .{
.material = .{
.durability = 300,
.massDamage = 4.0,
.hardnessDamage = 6.0,
.swingSpeed = 5.0,
.textureRoughness = 1.0,
.colors = .{
0xff452122, 0xff56262a, 0xff683233, 0xff733838, 0xff7f403d,
},
.modifiers = .{
.{
.id = "good_at",
.strength = 0.5,
.tag = .mantle,
.restriction = .{
.id = .encased,
.tag = .precious,
.amount = 2,
},
},
},
},
},
}
6 changes: 6 additions & 0 deletions assets/cubyz/blocks/mantle/base.zig.zon
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
.{
.allowOres = true,
.rotation = "cubyz:stairs",
.model = "cubyz:cube",
.texture = "cubyz:mantle/base",
}
5 changes: 5 additions & 0 deletions assets/cubyz/blocks/mantle/bricks.zig.zon
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
.{
.rotation = "cubyz:stairs",
.model = "cubyz:cube",
.texture = "cubyz:mantle/bricks",
}
Loading