mirror of
https://github.com/minetest-mods/technic.git
synced 2025-02-22 06:40:22 +01:00
add sulfur block
This commit is contained in:
parent
ebcf274ca2
commit
4e0f81c4a0
@ -95,6 +95,7 @@ register_block("technic:lead_block", "technic:lead_ingot")
|
||||
register_block("technic:cast_iron_block", "technic:cast_iron_ingot")
|
||||
register_block("technic:carbon_steel_block", "technic:carbon_steel_ingot")
|
||||
register_block("technic:stainless_steel_block", "technic:stainless_steel_ingot")
|
||||
register_block("technic:sulfur_block", "technic:sulfur_lump")
|
||||
|
||||
minetest.register_craft({
|
||||
type = 'cooking',
|
||||
|
@ -133,6 +133,14 @@ minetest.register_node(":technic:stainless_steel_block", {
|
||||
sounds = default.node_sound_stone_defaults()
|
||||
})
|
||||
|
||||
minetest.register_node(":technic:sulfur_block", {
|
||||
description = S("Sulfur Block"),
|
||||
tiles = { "technic_sulfur_block.png" },
|
||||
is_ground_content = true,
|
||||
groups = {cracky = 3},
|
||||
sounds = default.node_sound_stone_defaults()
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = 'technic:marble_bricks 4',
|
||||
recipe = {
|
||||
|
BIN
technic_worldgen/textures/technic_sulfur_block.png
Normal file
BIN
technic_worldgen/textures/technic_sulfur_block.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.3 KiB |
Loading…
x
Reference in New Issue
Block a user