mirror of
https://github.com/PixelGuys/Cubyz.git
synced 2025-08-03 11:17:05 -04:00

* Convert leaf piles to texturePiles, add to biomes, reduce break time * Fix rotation name, tweak yellow leaf pile texture, delete unused leaf pile textures
25 lines
507 B
Zig
25 lines
507 B
Zig
.{
|
|
.tags = .{.leaf},
|
|
.blockHealth = 0.1,
|
|
.drops = .{
|
|
.{.items = .{.auto}},
|
|
},
|
|
.degradable = true,
|
|
.collide = false,
|
|
.alwaysViewThrough = true,
|
|
.absorbedLight = 0x000000,
|
|
.model = .{
|
|
.model = "cubyz:plane",
|
|
.states = 4,
|
|
},
|
|
.rotation = .texture_pile,
|
|
.texture0 = "cubyz:dead_leaf_pile/0",
|
|
.texture1 = "cubyz:dead_leaf_pile/1",
|
|
.texture2 = "cubyz:dead_leaf_pile/2",
|
|
.texture3 = "cubyz:dead_leaf_pile/3",
|
|
.item = .{
|
|
.texture = "dead_leaf_pile.png",
|
|
},
|
|
.lodReplacement = "cubyz:air",
|
|
}
|