Made different stone types usable in crafting

This commit is contained in:
ikabod-kee 2025-01-16 15:54:34 -05:00 committed by IntegratedQuantum
parent 8dea53fc99
commit 8ac2966a42
9 changed files with 91 additions and 5 deletions

View File

@ -4,6 +4,17 @@
.drops = .{ .drops = .{
.{.items = .{.auto}}, .{.items = .{.auto}},
}, },
.item = .{
.material = .{
.density = 0.7,
.resistance = 0.7,
.power = 0.3,
.roughness = 2.5,
.colors = .{
0xff3d3d3d, 0xff535353, 0xff6b6b6b, 0xff81807e, 0xff9c9996,
},
},
},
.breakingPower = 1, .breakingPower = 1,
.rotation = .stairs, .rotation = .stairs,
.model = "cubyz:cube", .model = "cubyz:cube",

View File

@ -1,6 +1,9 @@
.{ .{
.class = .stone, .class = .stone,
.hardness = 25, .hardness = 25,
.drops = .{
.{.items = .{.auto}},
},
.item = .{ .item = .{
.material = .{ .material = .{
.density = 1.0, .density = 1.0,
@ -12,12 +15,7 @@
}, },
}, },
}, },
.drops = .{
.{.items = .{.auto}},
},
.model = "cubyz:cube", .model = "cubyz:cube",
.texture = "cubyz:cobblestone", .texture = "cubyz:cobblestone",
.rotation = .stairs, .rotation = .stairs,
} }

View File

@ -5,6 +5,17 @@
.drops = .{ .drops = .{
.{.items = .{.auto}}, .{.items = .{.auto}},
}, },
.item = .{
.material = .{
.density = 0.9,
.resistance = 1.0,
.power = 0.35,
.roughness = 0.5,
.colors = .{
0xff3d3d3d, 0xff535353, 0xff6b6b6b, 0xff81807e, 0xff9c9996,
},
},
},
.model = "cubyz:cube", .model = "cubyz:cube",
.rotation = .stairs, .rotation = .stairs,
.texture = "cubyz:ferrock", .texture = "cubyz:ferrock",

View File

@ -5,6 +5,17 @@
.drops = .{ .drops = .{
.{.items = .{.auto}}, .{.items = .{.auto}},
}, },
.item = .{
.material = .{
.density = 0.8,
.resistance = 0.9,
.power = 0.4,
.roughness = 1.5,
.colors = .{
0xff3d3d3d, 0xff535353, 0xff6b6b6b, 0xff81807e, 0xff9c9996,
},
},
},
.rotation = .stairs, .rotation = .stairs,
.model = "cubyz:cube", .model = "cubyz:cube",
.texture = "cubyz:glacite", .texture = "cubyz:glacite",

View File

@ -5,6 +5,17 @@
.drops = .{ .drops = .{
.{.items = .{.auto}}, .{.items = .{.auto}},
}, },
.item = .{
.material = .{
.density = 1.25,
.resistance = 0.9,
.power = 0.35,
.roughness = 0.9,
.colors = .{
0xff3d3d3d, 0xff535353, 0xff6b6b6b, 0xff81807e, 0xff9c9996,
},
},
},
.rotation = .stairs, .rotation = .stairs,
.model = "cubyz:cube", .model = "cubyz:cube",
.texture = "cubyz:limestone", .texture = "cubyz:limestone",

View File

@ -5,6 +5,17 @@
.drops = .{ .drops = .{
.{.items = .{.auto}}, .{.items = .{.auto}},
}, },
.item = .{
.material = .{
.density = 0.5,
.resistance = 0.1,
.power = 0.5,
.roughness = 0.1,
.colors = .{
0xff3d3d3d, 0xff535353, 0xff6b6b6b, 0xff81807e, 0xff9c9996,
},
},
},
.rotation = .stairs, .rotation = .stairs,
.model = "cubyz:cube", .model = "cubyz:cube",
.texture = "cubyz:obsidian", .texture = "cubyz:obsidian",

View File

@ -4,6 +4,17 @@
.drops = .{ .drops = .{
.{.items = .{.auto}}, .{.items = .{.auto}},
}, },
.item = .{
.material = .{
.density = 0.5,
.resistance = 0.5,
.power = 0.2,
.roughness = 3.0,
.colors = .{
0xff3d3d3d, 0xff535353, 0xff6b6b6b, 0xff81807e, 0xff9c9996,
},
},
},
.rotation = .stairs, .rotation = .stairs,
.model = "cubyz:cube", .model = "cubyz:cube",
.texture = "cubyz:sandstone", .texture = "cubyz:sandstone",

View File

@ -5,6 +5,17 @@
.drops = .{ .drops = .{
.{.items = .{"cubyz:cobblestone"}}, .{.items = .{"cubyz:cobblestone"}},
}, },
.item = .{
.material = .{
.density = 1.0,
.resistance = 1.0,
.power = 0.4,
.roughness = 1.0,
.colors = .{
0xff3d3d3d, 0xff535353, 0xff6b6b6b, 0xff81807e, 0xff9c9996,
},
},
},
.rotation = .stairs, .rotation = .stairs,
.model = "cubyz:cube", .model = "cubyz:cube",
.texture = "cubyz:stone", .texture = "cubyz:stone",

View File

@ -5,6 +5,17 @@
.drops = .{ .drops = .{
.{.items = .{.auto}}, .{.items = .{.auto}},
}, },
.item = .{
.material = .{
.density = 2.0,
.resistance = 2.0,
.power = 0.8,
.roughness = 2.0,
.colors = .{
0xff3d3d3d, 0xff535353, 0xff6b6b6b, 0xff81807e, 0xff9c9996,
},
},
},
.rotation = .stairs, .rotation = .stairs,
.model = "cubyz:cube", .model = "cubyz:cube",
.texture = "cubyz:void_stone", .texture = "cubyz:void_stone",