Merge e453baa61ea7bbfeaf3289890b59dc402dd6d13a into 2dc2a6e79018221d5aab44e09be242d9dab3ddf2
35
assets/cubyz/blocks/kamacite.zig.zon
Normal file
@ -0,0 +1,35 @@
|
||||
.{
|
||||
.tags = .{.stone},
|
||||
.blockHealth = 80,
|
||||
.blockResistance = 20,
|
||||
.drops = .{
|
||||
.{.items = .{.auto}},
|
||||
},
|
||||
.item = .{
|
||||
.material = .{
|
||||
.density = 6.0,
|
||||
.strength = 5.0,
|
||||
.elasticity = 2.0,
|
||||
.grip = 2.5,
|
||||
.hardness = 8.0,
|
||||
.textureRoughness = 1.0,
|
||||
.colors = .{
|
||||
0xff030308, 0xff0D0C11, 0xff151420, 0xff1C1A2B, 0xff28253D,
|
||||
},
|
||||
.modifiers = .{
|
||||
.{
|
||||
.id = "fragile",
|
||||
.strength = 0.20,
|
||||
},
|
||||
.{
|
||||
.id = "durable",
|
||||
.strength = 0.1,
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
.allowOres = true,
|
||||
.rotation = .stairs,
|
||||
.model = "cubyz:cube",
|
||||
.texture = "cubyz:kamacite",
|
||||
}
|
11
assets/cubyz/blocks/meteorite_block.zig.zon
Normal file
@ -0,0 +1,11 @@
|
||||
.{
|
||||
.tags = .{.stone},
|
||||
.blockHealth = 40,
|
||||
.blockResistance = 1,
|
||||
.drops = .{
|
||||
.{.items = .{.auto}},
|
||||
},
|
||||
.rotation = .stairs,
|
||||
.model = "cubyz:cube",
|
||||
.texture = "cubyz:meteorite_block",
|
||||
}
|
14
assets/cubyz/blocks/meteorite_ore.zig.zon
Normal file
@ -0,0 +1,14 @@
|
||||
.{
|
||||
.tags = .{.stone},
|
||||
.blockHealth = 40,
|
||||
.blockResistance = 20,
|
||||
.drops = .{
|
||||
.{.items = .{.auto}},
|
||||
},
|
||||
.rotation = .ore,
|
||||
.model = "cubyz:cube",
|
||||
.texture = "cubyz:meteorite_ore",
|
||||
.item = .{
|
||||
.texture = "raw_meteorite.png",
|
||||
},
|
||||
}
|
BIN
assets/cubyz/blocks/textures/kamacite.png
Normal file
After Width: | Height: | Size: 331 B |
BIN
assets/cubyz/blocks/textures/meteorite_block.png
Normal file
After Width: | Height: | Size: 394 B |
BIN
assets/cubyz/blocks/textures/meteorite_block_reflectivity.png
Normal file
After Width: | Height: | Size: 226 B |
BIN
assets/cubyz/blocks/textures/meteorite_ore.png
Normal file
After Width: | Height: | Size: 349 B |
BIN
assets/cubyz/blocks/textures/meteorite_ore_reflectivity.png
Normal file
After Width: | Height: | Size: 217 B |
14
assets/cubyz/items/meteorite_ingot.zig.zon
Normal file
@ -0,0 +1,14 @@
|
||||
.{
|
||||
.texture = "meteorite_ingot.png",
|
||||
.material = .{
|
||||
.density = 12.0,
|
||||
.strength = 5.0,
|
||||
.elasticity = 13.0,
|
||||
.grip = 2.0,
|
||||
.hardness = 6.0,
|
||||
.textureRoughness = 0.2,
|
||||
.colors = .{
|
||||
0xff5c423e, 0xff6c4f46, 0xff7d5954, 0xff8e655f, 0xffa67b70,
|
||||
},
|
||||
},
|
||||
}
|
BIN
assets/cubyz/items/textures/meteorite_ingot.png
Normal file
After Width: | Height: | Size: 368 B |
BIN
assets/cubyz/items/textures/raw_meteorite.png
Normal file
After Width: | Height: | Size: 337 B |
@ -39,6 +39,10 @@
|
||||
.inputs = .{"cubyz:coal", "cubyz:gold_ore"},
|
||||
.output = "cubyz:gold_ingot",
|
||||
},
|
||||
.{
|
||||
.inputs = .{"cubyz:coal", "cubyz:meteorite_ore"},
|
||||
.output = "cubyz:meteorite_ingot",
|
||||
},
|
||||
.{
|
||||
.inputs = .{"cubyz:coal", "cubyz:uranium_ore"},
|
||||
.output = "cubyz:uranium_ingot",
|
||||
@ -79,6 +83,10 @@
|
||||
.inputs = .{"4 cubyz:gold_ingot"},
|
||||
.output = "cubyz:gold_block",
|
||||
},
|
||||
.{
|
||||
.inputs = .{"4 cubyz:meteorite_ingot"},
|
||||
.output = "cubyz:meteorite_block",
|
||||
},
|
||||
.{
|
||||
.inputs = .{"4 cubyz:uranium_ingot"},
|
||||
.output = "cubyz:uranium_block",
|
||||
|