mirror of
https://github.com/PixelGuys/Cubyz.git
synced 2025-08-03 19:28:49 -04:00
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:
parent
3d81ef9d3d
commit
980588f6ed
11
assets/cubyz/blocks/coal_block.zig.zon
Normal file
11
assets/cubyz/blocks/coal_block.zig.zon
Normal file
@ -0,0 +1,11 @@
|
||||
.{
|
||||
.class = .stone,
|
||||
.blockHealth = 35,
|
||||
.breakingPower = 1,
|
||||
.drops = .{
|
||||
.{.items = .{.auto}},
|
||||
},
|
||||
.rotation = .stairs,
|
||||
.model = "cubyz:cube",
|
||||
.texture = "cubyz:coal_block",
|
||||
}
|
11
assets/cubyz/blocks/cut_diamond_block.zig.zon
Normal file
11
assets/cubyz/blocks/cut_diamond_block.zig.zon
Normal file
@ -0,0 +1,11 @@
|
||||
.{
|
||||
.class = .stone,
|
||||
.blockHealth = 55,
|
||||
.breakingPower = 10,
|
||||
.drops = .{
|
||||
.{.items = .{.auto}},
|
||||
},
|
||||
.rotation = .stairs,
|
||||
.model = "cubyz:cube",
|
||||
.texture = "cubyz:cut_diamond_block",
|
||||
}
|
11
assets/cubyz/blocks/diamond_block.zig.zon
Normal file
11
assets/cubyz/blocks/diamond_block.zig.zon
Normal file
@ -0,0 +1,11 @@
|
||||
.{
|
||||
.class = .stone,
|
||||
.blockHealth = 55,
|
||||
.breakingPower = 10,
|
||||
.drops = .{
|
||||
.{.items = .{.auto}},
|
||||
},
|
||||
.rotation = .stairs,
|
||||
.model = "cubyz:cube",
|
||||
.texture = "cubyz:diamond_block",
|
||||
}
|
BIN
assets/cubyz/blocks/textures/coal_block.png
Normal file
BIN
assets/cubyz/blocks/textures/coal_block.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 418 B |
BIN
assets/cubyz/blocks/textures/cut_diamond_block.png
Normal file
BIN
assets/cubyz/blocks/textures/cut_diamond_block.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 510 B |
BIN
assets/cubyz/blocks/textures/cut_diamond_block_reflectivity.png
Normal file
BIN
assets/cubyz/blocks/textures/cut_diamond_block_reflectivity.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 266 B |
BIN
assets/cubyz/blocks/textures/diamond_block.png
Normal file
BIN
assets/cubyz/blocks/textures/diamond_block.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 539 B |
BIN
assets/cubyz/blocks/textures/diamond_block_reflectivity.png
Normal file
BIN
assets/cubyz/blocks/textures/diamond_block_reflectivity.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 247 B |
@ -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",
|
||||
},
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user