diff --git a/assets/cubyz/blocks/jade_ore.zig.zon b/assets/cubyz/blocks/jade_ore.zig.zon new file mode 100644 index 000000000..ff5452f32 --- /dev/null +++ b/assets/cubyz/blocks/jade_ore.zig.zon @@ -0,0 +1,41 @@ +.{ + .tags = .{.mineable}, + .blockHealth = 12, + .blockResistance = 6, + .item = .{ + .texture = "jade.png", + .material = .{ + .durability = 600, + .massDamage = 0.4, + .hardnessDamage = 7, + .swingSpeed = 5, + .textureRoughness = 0.1, + .colors = .{ + 0xff487c54, 0xff56926e, 0xff66af71, 0xff82c994, 0xffbceab9, + }, + .modifiers = .{ + .{ + .id = "durable", + .strength = 1.5, + .restriction = .{ + .id = .encased, + .tag = .precious, + .amount = 4, + }, + }, + }, + }, + }, + .ore = .{ + .veins = 2, + .size = 3, + .minHeight = 400, + .density = 0.15, + }, + .drops = .{ + .{.items = .{.auto}}, + }, + .rotation = "cubyz:ore", + .model = "cubyz:cube", + .texture = "cubyz:jade_ore", +} diff --git a/assets/cubyz/blocks/textures/jade_ore.png b/assets/cubyz/blocks/textures/jade_ore.png new file mode 100644 index 000000000..60b599af2 Binary files /dev/null and b/assets/cubyz/blocks/textures/jade_ore.png differ diff --git a/assets/cubyz/blocks/textures/jade_ore_reflectivity.png b/assets/cubyz/blocks/textures/jade_ore_reflectivity.png new file mode 100644 index 000000000..e3877637e Binary files /dev/null and b/assets/cubyz/blocks/textures/jade_ore_reflectivity.png differ diff --git a/assets/cubyz/items/textures/jade.png b/assets/cubyz/items/textures/jade.png new file mode 100644 index 000000000..c100f0117 Binary files /dev/null and b/assets/cubyz/items/textures/jade.png differ