mirror of
https://github.com/PixelGuys/Cubyz.git
synced 2025-09-14 14:59:36 -04:00
Add terracotta and its brick variants (#1057)
This commit is contained in:
parent
2a2b599d5d
commit
ddb96ab3a4
11
assets/cubyz/blocks/terracotta.zig.zon
Normal file
11
assets/cubyz/blocks/terracotta.zig.zon
Normal file
@ -0,0 +1,11 @@
|
||||
.{
|
||||
.class = .stone,
|
||||
.blockHealth = 20,
|
||||
.drops = .{
|
||||
.{.items = .{.auto}},
|
||||
},
|
||||
.allowOres = true,
|
||||
.rotation = .stairs,
|
||||
.model = "cubyz:cube",
|
||||
.texture = "cubyz:terracotta",
|
||||
}
|
10
assets/cubyz/blocks/terracotta_bricks.zig.zon
Normal file
10
assets/cubyz/blocks/terracotta_bricks.zig.zon
Normal file
@ -0,0 +1,10 @@
|
||||
.{
|
||||
.class = .stone,
|
||||
.blockHealth = 20,
|
||||
.drops = .{
|
||||
.{.items = .{.auto}},
|
||||
},
|
||||
.rotation = .stairs,
|
||||
.model = "cubyz:cube",
|
||||
.texture = "cubyz:terracotta_bricks",
|
||||
}
|
10
assets/cubyz/blocks/terracotta_tiles.zig.zon
Normal file
10
assets/cubyz/blocks/terracotta_tiles.zig.zon
Normal file
@ -0,0 +1,10 @@
|
||||
.{
|
||||
.class = .stone,
|
||||
.blockHealth = 20,
|
||||
.drops = .{
|
||||
.{.items = .{.auto}},
|
||||
},
|
||||
.rotation = .stairs,
|
||||
.model = "cubyz:cube",
|
||||
.texture = "cubyz:terracotta_tiles",
|
||||
}
|
15
assets/cubyz/blocks/terracotta_wall.zig.zon
Normal file
15
assets/cubyz/blocks/terracotta_wall.zig.zon
Normal file
@ -0,0 +1,15 @@
|
||||
.{
|
||||
.class = .stone,
|
||||
.blockHealth = 20,
|
||||
.drops = .{
|
||||
.{.items = .{.auto}},
|
||||
},
|
||||
.rotation = .fence,
|
||||
.model = "cubyz:wall",
|
||||
.texture = "cubyz:terracotta_wall",
|
||||
.texture_top = "cubyz:terracotta_wall_top",
|
||||
.texture_bottom = "cubyz:terracotta_wall_top",
|
||||
.item = .{
|
||||
.texture = "wall/terracotta.png",
|
||||
},
|
||||
}
|
BIN
assets/cubyz/blocks/textures/terracotta.png
Normal file
BIN
assets/cubyz/blocks/textures/terracotta.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 331 B |
BIN
assets/cubyz/blocks/textures/terracotta_bricks.png
Normal file
BIN
assets/cubyz/blocks/textures/terracotta_bricks.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 367 B |
BIN
assets/cubyz/blocks/textures/terracotta_tiles.png
Normal file
BIN
assets/cubyz/blocks/textures/terracotta_tiles.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 389 B |
BIN
assets/cubyz/blocks/textures/terracotta_wall.png
Normal file
BIN
assets/cubyz/blocks/textures/terracotta_wall.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 419 B |
BIN
assets/cubyz/blocks/textures/terracotta_wall_top.png
Normal file
BIN
assets/cubyz/blocks/textures/terracotta_wall_top.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 392 B |
BIN
assets/cubyz/items/textures/wall/terracotta.png
Normal file
BIN
assets/cubyz/items/textures/wall/terracotta.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 429 B |
@ -87,6 +87,18 @@
|
||||
.inputs = .{"cubyz:ferrock"},
|
||||
.output = "2 cubyz:ferrock_wall",
|
||||
},
|
||||
.{
|
||||
.inputs = .{"cubyz:terracotta"},
|
||||
.output = "cubyz:terracotta_tiles",
|
||||
},
|
||||
.{
|
||||
.inputs = .{"cubyz:terracotta"},
|
||||
.output = "cubyz:terracotta_bricks",
|
||||
},
|
||||
.{
|
||||
.inputs = .{"cubyz:terracotta"},
|
||||
.output = "2 cubyz:terracotta_wall",
|
||||
},
|
||||
.{
|
||||
.inputs = .{"cubyz:void_stone"},
|
||||
.output = "cubyz:void_stone_tile",
|
||||
|
@ -27,6 +27,10 @@
|
||||
.inputs = .{"cubyz:coal", "cubyz:iron_ore"},
|
||||
.output = "cubyz:iron_ingot",
|
||||
},
|
||||
.{
|
||||
.inputs = .{"cubyz:coal", "cubyz:clay"},
|
||||
.output = "cubyz:terracotta",
|
||||
},
|
||||
.{
|
||||
.inputs = .{"1 cubyz:torch", "2 cubyz:iron_ingot"},
|
||||
.output = "cubyz:lamp",
|
||||
|
Loading…
x
Reference in New Issue
Block a user