Ruby ore + diamond texture tweaks (#1349)
* Ruby blocks and item, tweaks to diamond textures * Tweak ruby ore and add recipes * Change ore height * minHeight
11
assets/cubyz/blocks/cut_ruby_block.zig.zon
Normal file
@ -0,0 +1,11 @@
|
||||
.{
|
||||
.tags = .{.stone},
|
||||
.blockHealth = 55,
|
||||
.blockResistance = 9,
|
||||
.drops = .{
|
||||
.{.items = .{.auto}},
|
||||
},
|
||||
.rotation = .stairs,
|
||||
.model = "cubyz:cube",
|
||||
.texture = "cubyz:cut_ruby_block",
|
||||
}
|
11
assets/cubyz/blocks/ruby_block.zig.zon
Normal file
@ -0,0 +1,11 @@
|
||||
.{
|
||||
.tags = .{.stone},
|
||||
.blockHealth = 55,
|
||||
.blockResistance = 9,
|
||||
.drops = .{
|
||||
.{.items = .{.auto}},
|
||||
},
|
||||
.rotation = .stairs,
|
||||
.model = "cubyz:cube",
|
||||
.texture = "cubyz:ruby_block",
|
||||
}
|
44
assets/cubyz/blocks/ruby_ore.zig.zon
Normal file
@ -0,0 +1,44 @@
|
||||
.{
|
||||
.tags = .{.stone},
|
||||
.blockHealth = 100,
|
||||
.blockResistance = 9,
|
||||
.item = .{
|
||||
.texture = "ruby.png",
|
||||
.material = .{
|
||||
.density = 4.0,
|
||||
.elasticity = 0.25,
|
||||
.hardness = 9.0,
|
||||
.textureRoughness = 0.1,
|
||||
.colors = .{
|
||||
0xff9b2129, 0xffbd2936, 0xffda2f2f, 0xfffb4845, 0xffff7261,
|
||||
},
|
||||
.modifiers = .{
|
||||
.{
|
||||
.id = "fragile",
|
||||
.strength = 0.45,
|
||||
.restriction = .{
|
||||
.id = .not,
|
||||
.child = .{
|
||||
.id = .encased,
|
||||
.tag = .precious,
|
||||
.amount = 4,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
.ore = .{
|
||||
.veins = 4.5,
|
||||
.size = 3,
|
||||
.height = -5000,
|
||||
.minHeight = -15000,
|
||||
.density = 0.05,
|
||||
},
|
||||
.drops = .{
|
||||
.{.items = .{.auto}},
|
||||
},
|
||||
.rotation = .ore,
|
||||
.model = "cubyz:cube",
|
||||
.texture = "cubyz:ruby_ore",
|
||||
}
|
Before Width: | Height: | Size: 266 B After Width: | Height: | Size: 255 B |
BIN
assets/cubyz/blocks/textures/cut_ruby_block.png
Normal file
After Width: | Height: | Size: 454 B |
BIN
assets/cubyz/blocks/textures/cut_ruby_block_reflectivity.png
Normal file
After Width: | Height: | Size: 245 B |
Before Width: | Height: | Size: 539 B After Width: | Height: | Size: 539 B |
Before Width: | Height: | Size: 247 B After Width: | Height: | Size: 253 B |
BIN
assets/cubyz/blocks/textures/ruby_block.png
Normal file
After Width: | Height: | Size: 525 B |
BIN
assets/cubyz/blocks/textures/ruby_block_reflectivity.png
Normal file
After Width: | Height: | Size: 242 B |
BIN
assets/cubyz/blocks/textures/ruby_ore.png
Normal file
After Width: | Height: | Size: 327 B |
BIN
assets/cubyz/blocks/textures/ruby_ore_reflectivity.png
Normal file
After Width: | Height: | Size: 203 B |
@ -6,7 +6,7 @@
|
||||
.hardness = 10.0,
|
||||
.textureRoughness = 0.1,
|
||||
.colors = .{
|
||||
0xff847bce, 0xff8b9fe0, 0xff94c6ea, 0xffb0eaf6, 0xffffffff,
|
||||
0xff5d7ae4, 0xff8d85ff, 0xff78c1f9, 0xffa8f0ff, 0xffffffff,
|
||||
},
|
||||
.modifiers = .{
|
||||
.{
|
||||
|
Before Width: | Height: | Size: 353 B After Width: | Height: | Size: 327 B |
BIN
assets/cubyz/items/textures/ruby.png
Normal file
After Width: | Height: | Size: 316 B |
@ -91,6 +91,14 @@
|
||||
.inputs = .{"cubyz:diamond_block"},
|
||||
.output = "cubyz:cut_diamond_block",
|
||||
},
|
||||
.{
|
||||
.inputs = .{"4 cubyz:ruby_ore"},
|
||||
.output = "cubyz:ruby_block",
|
||||
},
|
||||
.{
|
||||
.inputs = .{"cubyz:ruby_block"},
|
||||
.output = "cubyz:cut_ruby_block",
|
||||
},
|
||||
.{
|
||||
.inputs = .{"cubyz:coal_block"},
|
||||
.output = "4 cubyz:coal",
|
||||
@ -127,6 +135,14 @@
|
||||
.inputs = .{"cubyz:cut_diamond_block"},
|
||||
.output = "4 cubyz:diamond",
|
||||
},
|
||||
.{
|
||||
.inputs = .{"cubyz:ruby_block"},
|
||||
.output = "4 cubyz:ruby_ore",
|
||||
},
|
||||
.{
|
||||
.inputs = .{"cubyz:cut_ruby_block"},
|
||||
.output = "4 cubyz:ruby_ore",
|
||||
},
|
||||
.{
|
||||
.inputs = .{"cubyz:gravel"},
|
||||
.output = "4 cubyz:pebbles",
|
||||
|