Add terracotta and its brick variants (#1057)

This commit is contained in:
Carrie 2025-02-16 00:58:05 -07:00 committed by GitHub
parent 2a2b599d5d
commit ddb96ab3a4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
12 changed files with 62 additions and 0 deletions

View File

@ -0,0 +1,11 @@
.{
.class = .stone,
.blockHealth = 20,
.drops = .{
.{.items = .{.auto}},
},
.allowOres = true,
.rotation = .stairs,
.model = "cubyz:cube",
.texture = "cubyz:terracotta",
}

View File

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

View File

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

View 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",
},
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 331 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 367 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 389 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 419 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 392 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 429 B

View File

@ -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",

View File

@ -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",