Add silver ore (#1306)
* Add silver ore, ingot, block, lower gold ore * Add recipes, make gold and silver ore values different
@ -4,8 +4,8 @@
|
||||
.blockResistance = 10,
|
||||
.ore = .{
|
||||
.veins = 3,
|
||||
.size = 15,
|
||||
.height = -500,
|
||||
.size = 12,
|
||||
.height = -600,
|
||||
.density = 0.25,
|
||||
},
|
||||
.drops = .{
|
||||
|
11
assets/cubyz/blocks/silver_block.zig.zon
Normal file
@ -0,0 +1,11 @@
|
||||
.{
|
||||
.tags = .{.stone},
|
||||
.blockHealth = 50,
|
||||
.blockResistance = 10,
|
||||
.drops = .{
|
||||
.{.items = .{.auto}},
|
||||
},
|
||||
.rotation = .stairs,
|
||||
.model = "cubyz:cube",
|
||||
.texture = "cubyz:silver_block",
|
||||
}
|
20
assets/cubyz/blocks/silver_ore.zig.zon
Normal 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",
|
||||
},
|
||||
}
|
Before Width: | Height: | Size: 204 B After Width: | Height: | Size: 226 B |
BIN
assets/cubyz/blocks/textures/silver_block.png
Normal file
After Width: | Height: | Size: 342 B |
BIN
assets/cubyz/blocks/textures/silver_block_reflectivity.png
Normal file
After Width: | Height: | Size: 208 B |
BIN
assets/cubyz/blocks/textures/silver_ore.png
Normal file
After Width: | Height: | Size: 391 B |
BIN
assets/cubyz/blocks/textures/silver_ore_reflectivity.png
Normal file
After Width: | Height: | Size: 236 B |
14
assets/cubyz/items/silver_ingot.zig.zon
Normal 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,
|
||||
},
|
||||
},
|
||||
}
|
BIN
assets/cubyz/items/textures/raw_silver.png
Normal file
After Width: | Height: | Size: 342 B |
BIN
assets/cubyz/items/textures/silver_ingot.png
Normal file
After Width: | Height: | Size: 401 B |
@ -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",
|
||||
|