Add silver ore (#1306)

* Add silver ore, ingot, block, lower gold ore

* Add recipes, make gold and silver ore values different
This commit is contained in:
Carrie 2025-04-16 04:36:26 -06:00 committed by GitHub
parent d4e187e5af
commit 332e9f57f0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
12 changed files with 59 additions and 2 deletions

View File

@ -4,8 +4,8 @@
.blockResistance = 10,
.ore = .{
.veins = 3,
.size = 15,
.height = -500,
.size = 12,
.height = -600,
.density = 0.25,
},
.drops = .{

View File

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

View File

@ -0,0 +1,20 @@
.{
.tags = .{.stone},
.blockHealth = 80,
.blockResistance = 10,
.ore = .{
.veins = 3,
.size = 15,
.height = -500,
.density = 0.25,
},
.drops = .{
.{.items = .{.auto}},
},
.rotation = .ore,
.model = "cubyz:cube",
.texture = "cubyz:silver_ore",
.item = .{
.texture = "raw_silver.png",
},
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 204 B

After

Width:  |  Height:  |  Size: 226 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 342 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 208 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 391 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 236 B

View File

@ -0,0 +1,14 @@
.{
.texture = "silver_ingot.png",
.material = .{
.density = 10.5,
.strength = 7.0,
.elasticity = 1.5,
.grip = 0.75,
.hardness = 2.5,
.textureRoughness = 0.05,
.colors = .{
0xff67727f, 0xff89919e, 0xffbdc2c6, 0xffe4e6e6, 0xfffcfcfc,
},
},
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 342 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 401 B

View File

@ -31,6 +31,10 @@
.inputs = .{"cubyz:coal", "cubyz:iron_ore"},
.output = "cubyz:iron_ingot",
},
.{
.inputs = .{"cubyz:coal", "cubyz:silver_ore"},
.output = "cubyz:silver_ingot",
},
.{
.inputs = .{"cubyz:coal", "cubyz:gold_ore"},
.output = "cubyz:gold_ingot",
@ -63,6 +67,10 @@
.inputs = .{"4 cubyz:iron_ingot"},
.output = "cubyz:iron_block",
},
.{
.inputs = .{"4 cubyz:silver_ingot"},
.output = "cubyz:silver_block",
},
.{
.inputs = .{"4 cubyz:gold_ingot"},
.output = "cubyz:gold_block",
@ -99,6 +107,10 @@
.inputs = .{"cubyz:iron_block"},
.output = "4 cubyz:iron_ingot",
},
.{
.inputs = .{"cubyz:silver_block"},
.output = "4 cubyz:silver_ingot",
},
.{
.inputs = .{"cubyz:gold_block"},
.output = "4 cubyz:gold_ingot",