mirror of
https://github.com/PixelGuys/Cubyz.git
synced 2025-08-03 11:17:05 -04:00
Made different stone types usable in crafting
This commit is contained in:
parent
8dea53fc99
commit
8ac2966a42
@ -4,6 +4,17 @@
|
||||
.drops = .{
|
||||
.{.items = .{.auto}},
|
||||
},
|
||||
.item = .{
|
||||
.material = .{
|
||||
.density = 0.7,
|
||||
.resistance = 0.7,
|
||||
.power = 0.3,
|
||||
.roughness = 2.5,
|
||||
.colors = .{
|
||||
0xff3d3d3d, 0xff535353, 0xff6b6b6b, 0xff81807e, 0xff9c9996,
|
||||
},
|
||||
},
|
||||
},
|
||||
.breakingPower = 1,
|
||||
.rotation = .stairs,
|
||||
.model = "cubyz:cube",
|
||||
|
@ -1,6 +1,9 @@
|
||||
.{
|
||||
.class = .stone,
|
||||
.hardness = 25,
|
||||
.drops = .{
|
||||
.{.items = .{.auto}},
|
||||
},
|
||||
.item = .{
|
||||
.material = .{
|
||||
.density = 1.0,
|
||||
@ -12,12 +15,7 @@
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
.drops = .{
|
||||
.{.items = .{.auto}},
|
||||
},
|
||||
.model = "cubyz:cube",
|
||||
.texture = "cubyz:cobblestone",
|
||||
|
||||
.rotation = .stairs,
|
||||
}
|
||||
|
@ -5,6 +5,17 @@
|
||||
.drops = .{
|
||||
.{.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",
|
||||
.rotation = .stairs,
|
||||
.texture = "cubyz:ferrock",
|
||||
|
@ -5,6 +5,17 @@
|
||||
.drops = .{
|
||||
.{.items = .{.auto}},
|
||||
},
|
||||
.item = .{
|
||||
.material = .{
|
||||
.density = 0.8,
|
||||
.resistance = 0.9,
|
||||
.power = 0.4,
|
||||
.roughness = 1.5,
|
||||
.colors = .{
|
||||
0xff3d3d3d, 0xff535353, 0xff6b6b6b, 0xff81807e, 0xff9c9996,
|
||||
},
|
||||
},
|
||||
},
|
||||
.rotation = .stairs,
|
||||
.model = "cubyz:cube",
|
||||
.texture = "cubyz:glacite",
|
||||
|
@ -5,6 +5,17 @@
|
||||
.drops = .{
|
||||
.{.items = .{.auto}},
|
||||
},
|
||||
.item = .{
|
||||
.material = .{
|
||||
.density = 1.25,
|
||||
.resistance = 0.9,
|
||||
.power = 0.35,
|
||||
.roughness = 0.9,
|
||||
.colors = .{
|
||||
0xff3d3d3d, 0xff535353, 0xff6b6b6b, 0xff81807e, 0xff9c9996,
|
||||
},
|
||||
},
|
||||
},
|
||||
.rotation = .stairs,
|
||||
.model = "cubyz:cube",
|
||||
.texture = "cubyz:limestone",
|
||||
|
@ -5,6 +5,17 @@
|
||||
.drops = .{
|
||||
.{.items = .{.auto}},
|
||||
},
|
||||
.item = .{
|
||||
.material = .{
|
||||
.density = 0.5,
|
||||
.resistance = 0.1,
|
||||
.power = 0.5,
|
||||
.roughness = 0.1,
|
||||
.colors = .{
|
||||
0xff3d3d3d, 0xff535353, 0xff6b6b6b, 0xff81807e, 0xff9c9996,
|
||||
},
|
||||
},
|
||||
},
|
||||
.rotation = .stairs,
|
||||
.model = "cubyz:cube",
|
||||
.texture = "cubyz:obsidian",
|
||||
|
@ -4,6 +4,17 @@
|
||||
.drops = .{
|
||||
.{.items = .{.auto}},
|
||||
},
|
||||
.item = .{
|
||||
.material = .{
|
||||
.density = 0.5,
|
||||
.resistance = 0.5,
|
||||
.power = 0.2,
|
||||
.roughness = 3.0,
|
||||
.colors = .{
|
||||
0xff3d3d3d, 0xff535353, 0xff6b6b6b, 0xff81807e, 0xff9c9996,
|
||||
},
|
||||
},
|
||||
},
|
||||
.rotation = .stairs,
|
||||
.model = "cubyz:cube",
|
||||
.texture = "cubyz:sandstone",
|
||||
|
@ -5,6 +5,17 @@
|
||||
.drops = .{
|
||||
.{.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,
|
||||
.model = "cubyz:cube",
|
||||
.texture = "cubyz:stone",
|
||||
|
@ -5,6 +5,17 @@
|
||||
.drops = .{
|
||||
.{.items = .{.auto}},
|
||||
},
|
||||
.item = .{
|
||||
.material = .{
|
||||
.density = 2.0,
|
||||
.resistance = 2.0,
|
||||
.power = 0.8,
|
||||
.roughness = 2.0,
|
||||
.colors = .{
|
||||
0xff3d3d3d, 0xff535353, 0xff6b6b6b, 0xff81807e, 0xff9c9996,
|
||||
},
|
||||
},
|
||||
},
|
||||
.rotation = .stairs,
|
||||
.model = "cubyz:cube",
|
||||
.texture = "cubyz:void_stone",
|
||||
|
Loading…
x
Reference in New Issue
Block a user