Resin assets (#1383)

* Resin assets

* resin_block = .wood

* Make resin block more frictiony
This commit is contained in:
Carrie 2025-05-04 04:34:17 -06:00 committed by GitHub
parent e1fc8deef8
commit 900b52a02c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,22 @@
.{
.tags = .{.wood},
.blockHealth = 1,
.drops = .{
.{.items = .{.auto}},
},
.rotation = .ore,
.model = "cubyz:cube",
.texture = "cubyz:resin",
.item = .{
.texture = "resin.png",
.material = .{
.density = 1.5,
.elasticity = 1,
.hardness = 1.5,
.textureRoughness = 0.1,
.colors = .{
0xff7e331f, 0xffa03d25, 0xffc34b27, 0xffdf682d, 0xfffc813a,
},
},
},
}

View File

@ -0,0 +1,13 @@
.{
.tags = .{.wood},
.blockHealth = 2,
.drops = .{
.{.items = .{.auto}},
},
.transparent = true,
.hasBackFace = true,
.model = "cubyz:cube",
.absorbedLight = 0x30a8cc,
.texture = "cubyz:resin_block",
.friction = 30,
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 278 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 403 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 233 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 335 B

View File

@ -51,6 +51,10 @@
.inputs = .{"1 cubyz:torch", "2 cubyz:iron_ingot"},
.output = "cubyz:lamp",
},
.{
.inputs = .{"4 cubyz:resin"},
.output = "cubyz:resin_block",
},
.{
.inputs = .{"4 cubyz:coal"},
.output = "cubyz:coal_block",
@ -99,6 +103,10 @@
.inputs = .{"cubyz:ruby_block"},
.output = "cubyz:cut_ruby_block",
},
.{
.inputs = .{"cubyz:resin_block"},
.output = "4 cubyz:resin",
},
.{
.inputs = .{"cubyz:coal_block"},
.output = "4 cubyz:coal",