Add working/blanket table, forge, cauldron

This commit is contained in:
Wuzzy 2024-08-29 23:58:01 +02:00
parent 1519649df6
commit 8a0bd52d35
17 changed files with 66 additions and 3 deletions

View File

@ -23,9 +23,9 @@ All levels by Wuzzy.
## Textures
- `farming_cotton_wild.png` by Extex101 (CC BY-SA 3.0)
- Water, wood (normal), tree (normal), stone (normal), sandstone brick, sandstone block, tools, hand, gold block, wooden chest, locked wooden chest, ship lightbox, player textures, crates, seaweed, purple coral, crab grass, fire, candle (standing, wall, wield), wool (cloth) come from “PixelBOX” texture pack by jp (CC0)
- Sandstone by Wuzzy (CC0)
- Derivative work of PixelBox sandstone
- Water, wood (normal), tree (normal), stone (normal), sandstone brick, sandstone block, tools, hand, gold block, wooden chest, locked wooden chest, ship lightbox, player textures, crates, seaweed, purple coral, crab grass, fire, candle (standing, wall, wield), wool (cloth), blanket table, working table, cauldron, forge come from “PixelBOX” texture pack by jp (CC0)
- Sandstone, forge animation, cold forge by Wuzzy (CC0)
- Derivative work of PixelBox
- Hanging candle by Wuzzy (CC0)
- Raindrop by Wuzzy (CC0)
- Textures in `lzr_decor` mod made by jp (CC0)

View File

@ -467,6 +467,69 @@ minetest.register_node("lzr_decor:cloth_black", {
sounds = lzr_sounds.node_sound_defaults(),
})
minetest.register_node("lzr_decor:forge", {
description = S("Forge"),
tiles = {
"lzr_decor_forge_off_top.png",
"lzr_decor_forge_bottom.png",
"lzr_decor_forge_side.png",
},
is_ground_content = false,
groups = { breakable = 1 },
sounds = lzr_sounds.node_sound_stone_defaults({
footstep = lzr_sounds.node_sound_dirt_defaults().footstep,
}),
})
minetest.register_node("lzr_decor:forge_lit", {
description = S("Forge (lit)"),
tiles = {
{ name = "lzr_decor_forge_top_anim.png", animation = { type = "vertical_frames", aspect_w = 16, aspect_h = 16, length = 4 }},
"lzr_decor_forge_bottom.png",
"lzr_decor_forge_side.png"
},
light_source = 5,
is_ground_content = false,
groups = { breakable = 1 },
sounds = lzr_sounds.node_sound_stone_defaults({
footstep = lzr_sounds.node_sound_dirt_defaults().footstep,
}),
})
minetest.register_node("lzr_decor:cauldron_water", {
description = S("Cauldron with Water"),
tiles = {"xdecor_cauldron_top_idle.png", "xdecor_cauldron_bottom.png", "xdecor_cauldron_side.png"},
is_ground_content = false,
groups = { breakable = 1 },
sounds = lzr_sounds.node_sound_metal_defaults(),
})
minetest.register_node("lzr_decor:cauldron", {
description = S("Cauldron"),
tiles = {"xdecor_cauldron_top_empty.png", "xdecor_cauldron_bottom.png", "xdecor_cauldron_side.png"},
is_ground_content = false,
groups = { breakable = 1 },
sounds = lzr_sounds.node_sound_metal_defaults(),
})
minetest.register_node("lzr_decor:blanket_table", {
description = S("Table with Blanket"),
tiles = {"lzr_decor_blanket_table_top.png", "lzr_decor_blanket_table_bottom.png", "lzr_decor_blanket_table_side.png"},
is_ground_content = false,
groups = { breakable = 1 },
sounds = lzr_sounds.node_sound_wood_defaults(),
})
minetest.register_node("lzr_decor:working_table", {
description = S("Working Table"),
tiles = {"lzr_decor_working_table_top.png", "lzr_decor_working_table_bottom.png", "lzr_decor_working_table_side.png"},
is_ground_content = false,
groups = { breakable = 1 },
sounds = lzr_sounds.node_sound_wood_defaults(),
})
-- Legacy nodes previously registered under lzr_panes
minetest.register_alias("lzr_panes:bar_flat", "lzr_decor:bar_flat")

Binary file not shown.

After

Width:  |  Height:  |  Size: 376 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 648 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 370 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 277 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 376 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 635 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 410 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 648 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 555 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 582 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 153 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 190 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 191 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 312 B