diff --git a/assets/cubyz/blocks/pebbles.zig.zon b/assets/cubyz/blocks/pebbles.zig.zon new file mode 100644 index 00000000..46c88144 --- /dev/null +++ b/assets/cubyz/blocks/pebbles.zig.zon @@ -0,0 +1,13 @@ +.{ + .class = .stone, + .blockHealth = 1, + .drops = .{ + .{.items = .{.auto}}, + }, + .rotation = .ore, + .model = "cubyz:cube", + .texture = "cubyz:pebbles", + .item = .{ + .texture = "pebbles.png", + }, +} diff --git a/assets/cubyz/blocks/textures/pebbles.png b/assets/cubyz/blocks/textures/pebbles.png new file mode 100644 index 00000000..7d2c957e Binary files /dev/null and b/assets/cubyz/blocks/textures/pebbles.png differ diff --git a/assets/cubyz/items/textures/pebbles.png b/assets/cubyz/items/textures/pebbles.png new file mode 100644 index 00000000..ace62c46 Binary files /dev/null and b/assets/cubyz/items/textures/pebbles.png differ diff --git a/assets/cubyz/recipes/special_recipes.zig.zon b/assets/cubyz/recipes/special_recipes.zig.zon index 1b7b0c7d..0c1f630c 100644 --- a/assets/cubyz/recipes/special_recipes.zig.zon +++ b/assets/cubyz/recipes/special_recipes.zig.zon @@ -67,4 +67,8 @@ .inputs = .{"cubyz:cut_diamond_block"}, .output = "4 cubyz:diamond", }, + .{ + .inputs = .{"cubyz:gravel"}, + .output = "4 cubyz:pebbles", + }, }