Ruby ore + diamond texture tweaks (#1349)

* Ruby blocks and item, tweaks to diamond textures

* Tweak ruby ore and add recipes

* Change ore height

* minHeight
This commit is contained in:
Carrie 2025-04-27 02:58:27 -06:00 committed by GitHub
parent b554552b4d
commit 1c22c879f4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
16 changed files with 83 additions and 1 deletions

View File

@ -0,0 +1,11 @@
.{
.tags = .{.stone},
.blockHealth = 55,
.blockResistance = 9,
.drops = .{
.{.items = .{.auto}},
},
.rotation = .stairs,
.model = "cubyz:cube",
.texture = "cubyz:cut_ruby_block",
}

View File

@ -0,0 +1,11 @@
.{
.tags = .{.stone},
.blockHealth = 55,
.blockResistance = 9,
.drops = .{
.{.items = .{.auto}},
},
.rotation = .stairs,
.model = "cubyz:cube",
.texture = "cubyz:ruby_block",
}

View 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",
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 266 B

After

Width:  |  Height:  |  Size: 255 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 454 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 245 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 539 B

After

Width:  |  Height:  |  Size: 539 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 247 B

After

Width:  |  Height:  |  Size: 253 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 525 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 242 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 327 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 203 B

View File

@ -6,7 +6,7 @@
.hardness = 10.0,
.textureRoughness = 0.1,
.colors = .{
0xff847bce, 0xff8b9fe0, 0xff94c6ea, 0xffb0eaf6, 0xffffffff,
0xff5d7ae4, 0xff8d85ff, 0xff78c1f9, 0xffa8f0ff, 0xffffffff,
},
.modifiers = .{
.{

Binary file not shown.

Before

Width:  |  Height:  |  Size: 353 B

After

Width:  |  Height:  |  Size: 327 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 316 B

View File

@ -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",