mirror of
https://github.com/PixelGuys/Cubyz.git
synced 2025-08-03 19:28:49 -04:00
Gold ore, ingot, and block (#1110)
* Gold ore, ingot, and block * Texture tweaks and add recipes * Ikabod's balancing * Change like 4 pixels of gold ore item
This commit is contained in:
parent
37136304a8
commit
fb0f028c3c
11
assets/cubyz/blocks/gold_block.zig.zon
Normal file
11
assets/cubyz/blocks/gold_block.zig.zon
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
.{
|
||||||
|
.class = .stone,
|
||||||
|
.blockHealth = 50,
|
||||||
|
.breakingPower = 10,
|
||||||
|
.drops = .{
|
||||||
|
.{.items = .{.auto}},
|
||||||
|
},
|
||||||
|
.rotation = .stairs,
|
||||||
|
.model = "cubyz:cube",
|
||||||
|
.texture = "cubyz:gold_block",
|
||||||
|
}
|
20
assets/cubyz/blocks/gold_ore.zig.zon
Normal file
20
assets/cubyz/blocks/gold_ore.zig.zon
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
.{
|
||||||
|
.class = .stone,
|
||||||
|
.blockHealth = 40,
|
||||||
|
.breakingPower = 10,
|
||||||
|
.ore = .{
|
||||||
|
.veins = 3,
|
||||||
|
.size = 15,
|
||||||
|
.height = -50,
|
||||||
|
.density = 0.25,
|
||||||
|
},
|
||||||
|
.drops = .{
|
||||||
|
.{.items = .{.auto}},
|
||||||
|
},
|
||||||
|
.rotation = .ore,
|
||||||
|
.model = "cubyz:cube",
|
||||||
|
.texture = "cubyz:gold_ore",
|
||||||
|
.item = .{
|
||||||
|
.texture = "raw_gold.png",
|
||||||
|
},
|
||||||
|
}
|
BIN
assets/cubyz/blocks/textures/gold_block.png
Normal file
BIN
assets/cubyz/blocks/textures/gold_block.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 357 B |
BIN
assets/cubyz/blocks/textures/gold_block_reflectivity.png
Normal file
BIN
assets/cubyz/blocks/textures/gold_block_reflectivity.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 201 B |
BIN
assets/cubyz/blocks/textures/gold_ore.png
Normal file
BIN
assets/cubyz/blocks/textures/gold_ore.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 390 B |
BIN
assets/cubyz/blocks/textures/gold_ore_reflectivity.png
Normal file
BIN
assets/cubyz/blocks/textures/gold_ore_reflectivity.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 237 B |
14
assets/cubyz/items/gold_ingot.zig.zon
Normal file
14
assets/cubyz/items/gold_ingot.zig.zon
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
.{
|
||||||
|
.texture = "gold_ingot.png",
|
||||||
|
.material = .{
|
||||||
|
.density = 19.5,
|
||||||
|
.strength = 7.5,
|
||||||
|
.elasticity = 1.0,
|
||||||
|
.grip = 0.75,
|
||||||
|
.hardness = 2.5,
|
||||||
|
.textureRoughness = 0.05,
|
||||||
|
.colors = .{
|
||||||
|
0xffbc7132, 0xffda972b, 0xfff2cd53, 0xfff2cd53, 0xfffae39e,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
}
|
BIN
assets/cubyz/items/textures/gold_ingot.png
Normal file
BIN
assets/cubyz/items/textures/gold_ingot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 400 B |
BIN
assets/cubyz/items/textures/raw_gold.png
Normal file
BIN
assets/cubyz/items/textures/raw_gold.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 349 B |
@ -27,6 +27,10 @@
|
|||||||
.inputs = .{"cubyz:coal", "cubyz:iron_ore"},
|
.inputs = .{"cubyz:coal", "cubyz:iron_ore"},
|
||||||
.output = "cubyz:iron_ingot",
|
.output = "cubyz:iron_ingot",
|
||||||
},
|
},
|
||||||
|
.{
|
||||||
|
.inputs = .{"cubyz:coal", "cubyz:gold_ore"},
|
||||||
|
.output = "cubyz:gold_ingot",
|
||||||
|
},
|
||||||
.{
|
.{
|
||||||
.inputs = .{"cubyz:coal", "cubyz:clay"},
|
.inputs = .{"cubyz:coal", "cubyz:clay"},
|
||||||
.output = "cubyz:terracotta",
|
.output = "cubyz:terracotta",
|
||||||
@ -43,6 +47,10 @@
|
|||||||
.inputs = .{"4 cubyz:iron_ingot"},
|
.inputs = .{"4 cubyz:iron_ingot"},
|
||||||
.output = "cubyz:iron_block",
|
.output = "cubyz:iron_block",
|
||||||
},
|
},
|
||||||
|
.{
|
||||||
|
.inputs = .{"4 cubyz:gold_ingot"},
|
||||||
|
.output = "cubyz:gold_block",
|
||||||
|
},
|
||||||
.{
|
.{
|
||||||
.inputs = .{"4 cubyz:diamond"},
|
.inputs = .{"4 cubyz:diamond"},
|
||||||
.output = "cubyz:diamond_block",
|
.output = "cubyz:diamond_block",
|
||||||
@ -59,6 +67,10 @@
|
|||||||
.inputs = .{"cubyz:iron_block"},
|
.inputs = .{"cubyz:iron_block"},
|
||||||
.output = "4 cubyz:iron_ingot",
|
.output = "4 cubyz:iron_ingot",
|
||||||
},
|
},
|
||||||
|
.{
|
||||||
|
.inputs = .{"cubyz:gold_block"},
|
||||||
|
.output = "4 cubyz:gold_ingot",
|
||||||
|
},
|
||||||
.{
|
.{
|
||||||
.inputs = .{"cubyz:diamond_block"},
|
.inputs = .{"cubyz:diamond_block"},
|
||||||
.output = "4 cubyz:diamond",
|
.output = "4 cubyz:diamond",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user