Add working/blanket table, forge, cauldron
@ -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)
|
||||
|
@ -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")
|
||||
|
BIN
mods/lzr_decor/textures/default_furnace_bottom.png
Normal file
After Width: | Height: | Size: 376 B |
BIN
mods/lzr_decor/textures/lzr_decor_blanket_table_bottom.png
Normal file
After Width: | Height: | Size: 648 B |
BIN
mods/lzr_decor/textures/lzr_decor_blanket_table_side.png
Normal file
After Width: | Height: | Size: 370 B |
BIN
mods/lzr_decor/textures/lzr_decor_blanket_table_top.png
Normal file
After Width: | Height: | Size: 277 B |
BIN
mods/lzr_decor/textures/lzr_decor_forge_bottom.png
Normal file
After Width: | Height: | Size: 376 B |
BIN
mods/lzr_decor/textures/lzr_decor_forge_off_top.png
Normal file
After Width: | Height: | Size: 635 B |
BIN
mods/lzr_decor/textures/lzr_decor_forge_side.png
Normal file
After Width: | Height: | Size: 410 B |
BIN
mods/lzr_decor/textures/lzr_decor_forge_top_anim.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
mods/lzr_decor/textures/lzr_decor_working_table_bottom.png
Normal file
After Width: | Height: | Size: 648 B |
BIN
mods/lzr_decor/textures/lzr_decor_working_table_side.png
Normal file
After Width: | Height: | Size: 555 B |
BIN
mods/lzr_decor/textures/lzr_decor_working_table_top.png
Normal file
After Width: | Height: | Size: 582 B |
BIN
mods/lzr_decor/textures/xdecor_cauldron_bottom.png
Normal file
After Width: | Height: | Size: 153 B |
BIN
mods/lzr_decor/textures/xdecor_cauldron_side.png
Normal file
After Width: | Height: | Size: 190 B |
BIN
mods/lzr_decor/textures/xdecor_cauldron_top_empty.png
Normal file
After Width: | Height: | Size: 191 B |
BIN
mods/lzr_decor/textures/xdecor_cauldron_top_idle.png
Normal file
After Width: | Height: | Size: 312 B |