Sulfur ore, block, and torches (#1287)
* Sulfur ore, block, and torches * Tweak block health * Add material values, brighten sulfur block
11
assets/cubyz/blocks/sulfur_block.zig.zon
Normal file
@ -0,0 +1,11 @@
|
||||
.{
|
||||
.tags = .{.stone},
|
||||
.blockHealth = 25,
|
||||
.blockResistance = 1,
|
||||
.drops = .{
|
||||
.{.items = .{.auto}},
|
||||
},
|
||||
.rotation = .stairs,
|
||||
.model = "cubyz:cube",
|
||||
.texture = "cubyz:sulfur_block",
|
||||
}
|
31
assets/cubyz/blocks/sulfur_ore.zig.zon
Normal file
@ -0,0 +1,31 @@
|
||||
.{
|
||||
.tags = .{.stone},
|
||||
.blockHealth = 40,
|
||||
.blockResistance = 1,
|
||||
.item = .{
|
||||
.texture = "sulfur.png",
|
||||
.material = .{
|
||||
.density = 2.0,
|
||||
.strength = 2.0,
|
||||
.elasticity = 0.25,
|
||||
.grip = 0.25,
|
||||
.hardness = 2.0,
|
||||
.textureRoughness = 0.1,
|
||||
.colors = .{
|
||||
0xffa99942, 0xffbeb349, 0xffe5c64c, 0xfffae764, 0xfffeffc9,
|
||||
},
|
||||
},
|
||||
},
|
||||
.ore = .{
|
||||
.veins = 3,
|
||||
.size = 25,
|
||||
.height = -200,
|
||||
.density = 0.8,
|
||||
},
|
||||
.drops = .{
|
||||
.{.items = .{.auto}},
|
||||
},
|
||||
.rotation = .ore,
|
||||
.model = "cubyz:cube",
|
||||
.texture = "cubyz:sulfur_ore",
|
||||
}
|
22
assets/cubyz/blocks/sulfur_torch.zig.zon
Normal file
@ -0,0 +1,22 @@
|
||||
.{
|
||||
.tags = .{.wood},
|
||||
.blockHealth = 0.5,
|
||||
.drops = .{
|
||||
.{.items = .{.auto}},
|
||||
},
|
||||
.solid = false,
|
||||
.emittedLight = 0x2b81b2,
|
||||
.viewThrough = true,
|
||||
.absorbedLight = 0x010101,
|
||||
.collide = false,
|
||||
.rotation = .torch,
|
||||
.model = .{
|
||||
.base = "cubyz:torch",
|
||||
.side = "cubyz:torch_side",
|
||||
},
|
||||
.texture = "cubyz:sulfur_torch",
|
||||
.item = .{
|
||||
.texture = "sulfur_torch.png",
|
||||
},
|
||||
.lodReplacement = "cubyz:air",
|
||||
}
|
BIN
assets/cubyz/blocks/textures/sulfur_block.png
Normal file
After Width: | Height: | Size: 486 B |
BIN
assets/cubyz/blocks/textures/sulfur_ore.png
Normal file
After Width: | Height: | Size: 355 B |
BIN
assets/cubyz/blocks/textures/sulfur_torch.png
Normal file
After Width: | Height: | Size: 190 B |
BIN
assets/cubyz/blocks/textures/sulfur_torch_emission.png
Normal file
After Width: | Height: | Size: 4.6 KiB |
Before Width: | Height: | Size: 192 B After Width: | Height: | Size: 194 B |
BIN
assets/cubyz/items/textures/sulfur.png
Normal file
After Width: | Height: | Size: 363 B |
BIN
assets/cubyz/items/textures/sulfur_torch.png
Normal file
After Width: | Height: | Size: 250 B |
@ -51,6 +51,10 @@
|
||||
.inputs = .{"4 cubyz:coal"},
|
||||
.output = "cubyz:coal_block",
|
||||
},
|
||||
.{
|
||||
.inputs = .{"4 cubyz:sulfur_ore"},
|
||||
.output = "cubyz:sulfur_block",
|
||||
},
|
||||
.{
|
||||
.inputs = .{"4 cubyz:copper_ingot"},
|
||||
.output = "cubyz:copper_block",
|
||||
@ -83,6 +87,14 @@
|
||||
.inputs = .{"cubyz:coal_block"},
|
||||
.output = "4 cubyz:coal",
|
||||
},
|
||||
.{
|
||||
.inputs = .{"cubyz:sulfur_block"},
|
||||
.output = "4 cubyz:sulfur_ore",
|
||||
},
|
||||
.{
|
||||
.inputs = .{"cubyz:copper_block"},
|
||||
.output = "4 cubyz:copper_ingot",
|
||||
},
|
||||
.{
|
||||
.inputs = .{"cubyz:iron_block"},
|
||||
.output = "4 cubyz:iron_ingot",
|
||||
|
@ -172,4 +172,28 @@
|
||||
.inputs = .{"cubyz:willow_planks", "cubyz:coal"},
|
||||
.output = "8 cubyz:torch",
|
||||
},
|
||||
.{
|
||||
.inputs = .{"cubyz:birch_planks", "cubyz:sulfur_ore"},
|
||||
.output = "8 cubyz:sulfur_torch",
|
||||
},
|
||||
.{
|
||||
.inputs = .{"cubyz:baobab_planks", "cubyz:sulfur_ore"},
|
||||
.output = "8 cubyz:sulfur_torch",
|
||||
},
|
||||
.{
|
||||
.inputs = .{"cubyz:oak_planks", "cubyz:sulfur_ore"},
|
||||
.output = "8 cubyz:sulfur_torch",
|
||||
},
|
||||
.{
|
||||
.inputs = .{"cubyz:mahogany_planks", "cubyz:sulfur_ore"},
|
||||
.output = "8 cubyz:sulfur_torch",
|
||||
},
|
||||
.{
|
||||
.inputs = .{"cubyz:pine_planks", "cubyz:sulfur_ore"},
|
||||
.output = "8 cubyz:sulfur_torch",
|
||||
},
|
||||
.{
|
||||
.inputs = .{"cubyz:willow_planks", "cubyz:sulfur_ore"},
|
||||
.output = "8 cubyz:sulfur_torch",
|
||||
},
|
||||
}
|
||||
|