Sulfur ore, block, and torches (#1287)

* Sulfur ore, block, and torches

* Tweak block health

* Add material values, brighten sulfur block
This commit is contained in:
Carrie 2025-04-13 08:45:05 -06:00 committed by GitHub
parent 823faf64b7
commit 871b635cae
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
12 changed files with 100 additions and 0 deletions

View File

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

View 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",
}

View 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",
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 486 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 355 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 192 B

After

Width:  |  Height:  |  Size: 194 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 363 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 250 B

View File

@ -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",

View File

@ -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",
},
}