mirror of
https://github.com/PixelGuys/Cubyz.git
synced 2025-08-03 03:06:55 -04:00
Resin assets (#1383)
* Resin assets * resin_block = .wood * Make resin block more frictiony
This commit is contained in:
parent
e1fc8deef8
commit
900b52a02c
22
assets/cubyz/blocks/resin.zig.zon
Normal file
22
assets/cubyz/blocks/resin.zig.zon
Normal 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,
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
13
assets/cubyz/blocks/resin_block.zig.zon
Normal file
13
assets/cubyz/blocks/resin_block.zig.zon
Normal 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,
|
||||
}
|
BIN
assets/cubyz/blocks/textures/resin.png
Normal file
BIN
assets/cubyz/blocks/textures/resin.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 278 B |
BIN
assets/cubyz/blocks/textures/resin_block.png
Normal file
BIN
assets/cubyz/blocks/textures/resin_block.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 403 B |
BIN
assets/cubyz/blocks/textures/resin_block_reflectivity.png
Normal file
BIN
assets/cubyz/blocks/textures/resin_block_reflectivity.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 233 B |
BIN
assets/cubyz/items/textures/resin.png
Normal file
BIN
assets/cubyz/items/textures/resin.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 335 B |
@ -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",
|
||||
|
Loading…
x
Reference in New Issue
Block a user