Coal and Diamond blocks (#1059)

* Add coal and diamond blocks and recipes

* Diamond block needs breaking power of 10

* Tweak diamond block texture

* New diamond block, cut diamond block + recipes
This commit is contained in:
Carrie 2025-02-19 08:44:28 -07:00 committed by GitHub
parent 3d81ef9d3d
commit 980588f6ed
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
9 changed files with 57 additions and 0 deletions

View File

@ -0,0 +1,11 @@
.{
.class = .stone,
.blockHealth = 35,
.breakingPower = 1,
.drops = .{
.{.items = .{.auto}},
},
.rotation = .stairs,
.model = "cubyz:cube",
.texture = "cubyz:coal_block",
}

View File

@ -0,0 +1,11 @@
.{
.class = .stone,
.blockHealth = 55,
.breakingPower = 10,
.drops = .{
.{.items = .{.auto}},
},
.rotation = .stairs,
.model = "cubyz:cube",
.texture = "cubyz:cut_diamond_block",
}

View File

@ -0,0 +1,11 @@
.{
.class = .stone,
.blockHealth = 55,
.breakingPower = 10,
.drops = .{
.{.items = .{.auto}},
},
.rotation = .stairs,
.model = "cubyz:cube",
.texture = "cubyz:diamond_block",
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 418 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 510 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 266 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 539 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 247 B

View File

@ -35,12 +35,36 @@
.inputs = .{"1 cubyz:torch", "2 cubyz:iron_ingot"},
.output = "cubyz:lamp",
},
.{
.inputs = .{"4 cubyz:coal"},
.output = "cubyz:coal_block",
},
.{
.inputs = .{"4 cubyz:iron_ingot"},
.output = "cubyz:iron_block",
},
.{
.inputs = .{"4 cubyz:diamond"},
.output = "cubyz:diamond_block",
},
.{
.inputs = .{"cubyz:diamond_block"},
.output = "cubyz:cut_diamond_block",
},
.{
.inputs = .{"cubyz:coal_block"},
.output = "4 cubyz:coal",
},
.{
.inputs = .{"cubyz:iron_block"},
.output = "4 cubyz:iron_ingot",
},
.{
.inputs = .{"cubyz:diamond_block"},
.output = "4 cubyz:diamond",
},
.{
.inputs = .{"cubyz:cut_diamond_block"},
.output = "4 cubyz:diamond",
},
}