Merge e453baa61ea7bbfeaf3289890b59dc402dd6d13a into 2dc2a6e79018221d5aab44e09be242d9dab3ddf2

This commit is contained in:
Carrie 2025-07-31 12:47:36 +02:00 committed by GitHub
commit f267aa1884
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
12 changed files with 82 additions and 0 deletions

View File

@ -0,0 +1,35 @@
.{
.tags = .{.stone},
.blockHealth = 80,
.blockResistance = 20,
.drops = .{
.{.items = .{.auto}},
},
.item = .{
.material = .{
.density = 6.0,
.strength = 5.0,
.elasticity = 2.0,
.grip = 2.5,
.hardness = 8.0,
.textureRoughness = 1.0,
.colors = .{
0xff030308, 0xff0D0C11, 0xff151420, 0xff1C1A2B, 0xff28253D,
},
.modifiers = .{
.{
.id = "fragile",
.strength = 0.20,
},
.{
.id = "durable",
.strength = 0.1,
},
},
},
},
.allowOres = true,
.rotation = .stairs,
.model = "cubyz:cube",
.texture = "cubyz:kamacite",
}

View File

@ -0,0 +1,11 @@
.{
.tags = .{.stone},
.blockHealth = 40,
.blockResistance = 1,
.drops = .{
.{.items = .{.auto}},
},
.rotation = .stairs,
.model = "cubyz:cube",
.texture = "cubyz:meteorite_block",
}

View File

@ -0,0 +1,14 @@
.{
.tags = .{.stone},
.blockHealth = 40,
.blockResistance = 20,
.drops = .{
.{.items = .{.auto}},
},
.rotation = .ore,
.model = "cubyz:cube",
.texture = "cubyz:meteorite_ore",
.item = .{
.texture = "raw_meteorite.png",
},
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 331 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 394 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 226 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 349 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 217 B

View File

@ -0,0 +1,14 @@
.{
.texture = "meteorite_ingot.png",
.material = .{
.density = 12.0,
.strength = 5.0,
.elasticity = 13.0,
.grip = 2.0,
.hardness = 6.0,
.textureRoughness = 0.2,
.colors = .{
0xff5c423e, 0xff6c4f46, 0xff7d5954, 0xff8e655f, 0xffa67b70,
},
},
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 368 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 337 B

View File

@ -39,6 +39,10 @@
.inputs = .{"cubyz:coal", "cubyz:gold_ore"},
.output = "cubyz:gold_ingot",
},
.{
.inputs = .{"cubyz:coal", "cubyz:meteorite_ore"},
.output = "cubyz:meteorite_ingot",
},
.{
.inputs = .{"cubyz:coal", "cubyz:uranium_ore"},
.output = "cubyz:uranium_ingot",
@ -79,6 +83,10 @@
.inputs = .{"4 cubyz:gold_ingot"},
.output = "cubyz:gold_block",
},
.{
.inputs = .{"4 cubyz:meteorite_ingot"},
.output = "cubyz:meteorite_block",
},
.{
.inputs = .{"4 cubyz:uranium_ingot"},
.output = "cubyz:uranium_block",