Update of MinetestForFun Game (from Creative)
|
@ -1,88 +1,92 @@
|
|||
-- fancy shaped bed
|
||||
beds.register_bed("beds:fancy_bed", {
|
||||
description = "Fancy Bed",
|
||||
inventory_image = "beds_bed_fancy.png",
|
||||
wield_image = "beds_bed_fancy.png",
|
||||
tiles = {
|
||||
bottom = {
|
||||
"beds_bed_top1.png",
|
||||
"default_wood.png",
|
||||
"beds_bed_side1.png",
|
||||
"beds_bed_side1.png^[transformFX",
|
||||
"default_wood.png",
|
||||
"beds_bed_foot.png",
|
||||
},
|
||||
top = {
|
||||
"beds_bed_top2.png",
|
||||
"default_wood.png",
|
||||
"beds_bed_side2.png",
|
||||
"beds_bed_side2.png^[transformFX",
|
||||
"beds_bed_head.png",
|
||||
"default_wood.png",
|
||||
}
|
||||
},
|
||||
nodebox = {
|
||||
bottom = {
|
||||
{-0.5, -0.5, -0.5, -0.375, -0.065, -0.4375},
|
||||
{0.375, -0.5, -0.5, 0.5, -0.065, -0.4375},
|
||||
{-0.5, -0.375, -0.5, 0.5, -0.125, -0.4375},
|
||||
{-0.5, -0.375, -0.5, -0.4375, -0.125, 0.5},
|
||||
{0.4375, -0.375, -0.5, 0.5, -0.125, 0.5},
|
||||
{-0.4375, -0.3125, -0.4375, 0.4375, -0.0625, 0.5},
|
||||
},
|
||||
top = {
|
||||
{-0.5, -0.5, 0.4375, -0.375, 0.1875, 0.5},
|
||||
{0.375, -0.5, 0.4375, 0.5, 0.1875, 0.5},
|
||||
{-0.5, 0, 0.4375, 0.5, 0.125, 0.5},
|
||||
{-0.5, -0.375, 0.4375, 0.5, -0.125, 0.5},
|
||||
{-0.5, -0.375, -0.5, -0.4375, -0.125, 0.5},
|
||||
{0.4375, -0.375, -0.5, 0.5, -0.125, 0.5},
|
||||
{-0.4375, -0.3125, -0.5, 0.4375, -0.0625, 0.4375},
|
||||
}
|
||||
},
|
||||
selectionbox = {-0.5, -0.5, -0.5, 0.5, 0.06, 1.5},
|
||||
recipe = {
|
||||
{"", "", "group:stick"},
|
||||
{"wool:red", "wool:red", "wool:white"},
|
||||
{"group:wood", "group:wood", "group:wood"},
|
||||
},
|
||||
})
|
||||
for _, colour in pairs({"red", "white", "black", "blue", "green"}) do-- fancy shaped bed
|
||||
beds.register_bed("beds:fancy_bed_" .. colour, {
|
||||
description = "Fancy Bed (" .. colour .. ")",
|
||||
inventory_image = "beds_bed_fancy_" .. colour .. ".png",
|
||||
wield_image = "beds_bed_fancy_" .. colour .. ".png",
|
||||
tiles = {
|
||||
bottom = {
|
||||
"beds_bed_top1_" .. colour .. ".png",
|
||||
"default_wood.png",
|
||||
"beds_bed_side1_" .. colour .. ".png",
|
||||
"beds_bed_side1_" .. colour .. ".png^[transformFX",
|
||||
"default_wood.png",
|
||||
"beds_bed_foot_" .. colour .. ".png",
|
||||
},
|
||||
top = {
|
||||
"beds_bed_top2_" .. colour .. ".png",
|
||||
"default_wood.png",
|
||||
"beds_bed_side2_" .. colour .. ".png",
|
||||
"beds_bed_side2_" .. colour .. ".png^[transformFX",
|
||||
"beds_bed_head.png",
|
||||
"default_wood.png",
|
||||
}
|
||||
},
|
||||
nodebox = {
|
||||
bottom = {
|
||||
{-0.5, -0.5, -0.5, -0.375, -0.065, -0.4375},
|
||||
{0.375, -0.5, -0.5, 0.5, -0.065, -0.4375},
|
||||
{-0.5, -0.375, -0.5, 0.5, -0.125, -0.4375},
|
||||
{-0.5, -0.375, -0.5, -0.4375, -0.125, 0.5},
|
||||
{0.4375, -0.375, -0.5, 0.5, -0.125, 0.5},
|
||||
{-0.4375, -0.3125, -0.4375, 0.4375, -0.0625, 0.5},
|
||||
},
|
||||
top = {
|
||||
{-0.5, -0.5, 0.4375, -0.375, 0.1875, 0.5},
|
||||
{0.375, -0.5, 0.4375, 0.5, 0.1875, 0.5},
|
||||
{-0.5, 0, 0.4375, 0.5, 0.125, 0.5},
|
||||
{-0.5, -0.375, 0.4375, 0.5, -0.125, 0.5},
|
||||
{-0.5, -0.375, -0.5, -0.4375, -0.125, 0.5},
|
||||
{0.4375, -0.375, -0.5, 0.5, -0.125, 0.5},
|
||||
{-0.4375, -0.3125, -0.5, 0.4375, -0.0625, 0.4375},
|
||||
}
|
||||
},
|
||||
selectionbox = {-0.5, -0.5, -0.5, 0.5, 0.06, 1.5},
|
||||
recipe = {
|
||||
{"", "", "group:stick"},
|
||||
{"wool:" .. colour, "wool:" .. colour, "wool:white"},
|
||||
{"group:wood", "group:wood", "group:wood"},
|
||||
},
|
||||
})
|
||||
|
||||
-- simple shaped bed
|
||||
beds.register_bed("beds:bed", {
|
||||
description = "Simple Bed",
|
||||
inventory_image = "beds_bed.png",
|
||||
wield_image = "beds_bed.png",
|
||||
tiles = {
|
||||
bottom = {
|
||||
"beds_bed_top_bottom.png^[transformR90",
|
||||
"default_wood.png",
|
||||
"beds_bed_side_bottom_r.png",
|
||||
"beds_bed_side_bottom_r.png^[transformfx",
|
||||
"beds_transparent.png",
|
||||
"beds_bed_side_bottom.png"
|
||||
},
|
||||
top = {
|
||||
"beds_bed_top_top.png^[transformR90",
|
||||
"default_wood.png",
|
||||
"beds_bed_side_top_r.png",
|
||||
"beds_bed_side_top_r.png^[transformfx",
|
||||
"beds_bed_side_top.png",
|
||||
"beds_transparent.png",
|
||||
}
|
||||
},
|
||||
nodebox = {
|
||||
bottom = {-0.5, -0.5, -0.5, 0.5, 0.06, 0.5},
|
||||
top = {-0.5, -0.5, -0.5, 0.5, 0.06, 0.5},
|
||||
},
|
||||
selectionbox = {-0.5, -0.5, -0.5, 0.5, 0.06, 1.5},
|
||||
recipe = {
|
||||
{"wool:red", "wool:red", "wool:white"},
|
||||
{"group:wood", "group:wood", "group:wood"}
|
||||
},
|
||||
-- simple shaped bed
|
||||
beds.register_bed("beds:bed_" .. colour, {
|
||||
description = "Simple Bed (" .. colour .. ")",
|
||||
inventory_image = "beds_bed_" .. colour .. ".png",
|
||||
wield_image = "beds_bed_" .. colour .. ".png",
|
||||
tiles = {
|
||||
bottom = {
|
||||
"beds_bed_top_bottom_" .. colour .. ".png^[transformR90",
|
||||
"default_wood.png",
|
||||
"beds_bed_side_bottom_r_" .. colour .. ".png",
|
||||
"beds_bed_side_bottom_r_" .. colour .. ".png^[transformfx",
|
||||
"beds_transparent.png",
|
||||
"beds_bed_side_bottom_" .. colour .. ".png"
|
||||
},
|
||||
top = {
|
||||
"beds_bed_top_top_" .. colour .. ".png^[transformR90",
|
||||
"default_wood.png",
|
||||
"beds_bed_side_top_r_" .. colour .. ".png",
|
||||
"beds_bed_side_top_r_" .. colour .. ".png^[transformfx",
|
||||
"beds_bed_side_top.png",
|
||||
"beds_transparent.png",
|
||||
}
|
||||
},
|
||||
nodebox = {
|
||||
bottom = {-0.5, -0.5, -0.5, 0.5, 0.06, 0.5},
|
||||
top = {-0.5, -0.5, -0.5, 0.5, 0.06, 0.5},
|
||||
},
|
||||
selectionbox = {-0.5, -0.5, -0.5, 0.5, 0.06, 1.5},
|
||||
recipe = {
|
||||
{"wool:" .. colour, "wool:" .. colour, "wool:white"},
|
||||
{"group:wood", "group:wood", "group:wood"}
|
||||
},
|
||||
|
||||
})
|
||||
end
|
||||
|
||||
})
|
||||
|
||||
-- aliases for PA's beds mod
|
||||
minetest.register_alias("beds:bed_bottom_red", "beds:bed_bottom")
|
||||
minetest.register_alias("beds:bed_top_red", "beds:bed_top")
|
||||
minetest.register_alias("beds:bed", "beds:bed_red")
|
||||
minetest.register_alias("beds:fancy_bed", "beds:fancy_bed_red")
|
||||
minetest.register_alias("beds:bed_bottom", "beds:bed_red_bottom")
|
||||
minetest.register_alias("beds:bed_top", "beds:bed_red_top")
|
||||
minetest.register_alias("beds:fancy_bed_top", "beds:fancy_bed_red_top")
|
||||
minetest.register_alias("beds:fancy_bed_bottom", "beds:fancy_bed_red_bottom")
|
||||
|
|
BIN
minetestforfun_game/mods/beds/textures/beds_bed_black.png
Executable file
After Width: | Height: | Size: 429 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_blue.png
Executable file
After Width: | Height: | Size: 545 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_fancy_black.png
Executable file
After Width: | Height: | Size: 432 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_fancy_blue.png
Executable file
After Width: | Height: | Size: 545 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_fancy_green.png
Executable file
After Width: | Height: | Size: 521 B |
Before Width: | Height: | Size: 537 B After Width: | Height: | Size: 537 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_fancy_white.png
Executable file
After Width: | Height: | Size: 540 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_foot_black.png
Executable file
After Width: | Height: | Size: 366 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_foot_blue.png
Executable file
After Width: | Height: | Size: 416 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_foot_green.png
Executable file
After Width: | Height: | Size: 400 B |
Before Width: | Height: | Size: 390 B After Width: | Height: | Size: 390 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_foot_white.png
Executable file
After Width: | Height: | Size: 408 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_green.png
Executable file
After Width: | Height: | Size: 523 B |
Before Width: | Height: | Size: 540 B After Width: | Height: | Size: 540 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_side1_black.png
Executable file
After Width: | Height: | Size: 274 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_side1_blue.png
Executable file
After Width: | Height: | Size: 308 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_side1_green.png
Executable file
After Width: | Height: | Size: 299 B |
Before Width: | Height: | Size: 271 B After Width: | Height: | Size: 271 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_side1_white.png
Executable file
After Width: | Height: | Size: 295 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_side2_black.png
Executable file
After Width: | Height: | Size: 317 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_side2_blue.png
Executable file
After Width: | Height: | Size: 331 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_side2_green.png
Executable file
After Width: | Height: | Size: 326 B |
Before Width: | Height: | Size: 283 B After Width: | Height: | Size: 283 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_side2_white.png
Executable file
After Width: | Height: | Size: 326 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_side_bottom_black.png
Executable file
After Width: | Height: | Size: 358 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_side_bottom_blue.png
Executable file
After Width: | Height: | Size: 456 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_side_bottom_green.png
Executable file
After Width: | Height: | Size: 427 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_side_bottom_r_black.png
Executable file
After Width: | Height: | Size: 343 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_side_bottom_r_blue.png
Executable file
After Width: | Height: | Size: 456 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_side_bottom_r_green.png
Executable file
After Width: | Height: | Size: 422 B |
Before Width: | Height: | Size: 537 B After Width: | Height: | Size: 537 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_side_bottom_r_white.png
Executable file
After Width: | Height: | Size: 434 B |
Before Width: | Height: | Size: 523 B After Width: | Height: | Size: 523 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_side_bottom_white.png
Executable file
After Width: | Height: | Size: 439 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_side_top_r_black.png
Executable file
After Width: | Height: | Size: 429 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_side_top_r_blue.png
Executable file
After Width: | Height: | Size: 478 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_side_top_r_green.png
Executable file
After Width: | Height: | Size: 463 B |
Before Width: | Height: | Size: 560 B After Width: | Height: | Size: 560 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_side_top_r_white.png
Executable file
After Width: | Height: | Size: 460 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_top1_black.png
Executable file
After Width: | Height: | Size: 241 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_top1_blue.png
Executable file
After Width: | Height: | Size: 494 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_top1_green.png
Executable file
After Width: | Height: | Size: 448 B |
Before Width: | Height: | Size: 548 B After Width: | Height: | Size: 548 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_top1_white.png
Executable file
After Width: | Height: | Size: 478 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_top2_black.png
Executable file
After Width: | Height: | Size: 465 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_top2_blue.png
Executable file
After Width: | Height: | Size: 609 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_top2_green.png
Executable file
After Width: | Height: | Size: 586 B |
Before Width: | Height: | Size: 616 B After Width: | Height: | Size: 616 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_top2_white.png
Executable file
After Width: | Height: | Size: 573 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_top_bottom_black.png
Executable file
After Width: | Height: | Size: 126 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_top_bottom_blue.png
Executable file
After Width: | Height: | Size: 434 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_top_bottom_green.png
Executable file
After Width: | Height: | Size: 343 B |
Before Width: | Height: | Size: 495 B After Width: | Height: | Size: 495 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_top_bottom_white.png
Executable file
After Width: | Height: | Size: 339 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_top_top_black.png
Executable file
After Width: | Height: | Size: 376 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_top_top_blue.png
Executable file
After Width: | Height: | Size: 568 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_top_top_green.png
Executable file
After Width: | Height: | Size: 525 B |
Before Width: | Height: | Size: 556 B After Width: | Height: | Size: 556 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_top_top_white.png
Executable file
After Width: | Height: | Size: 480 B |
BIN
minetestforfun_game/mods/beds/textures/beds_bed_white.png
Executable file
After Width: | Height: | Size: 525 B |
BIN
minetestforfun_game/mods/beds/textures/fancy_bed_black.png
Executable file
After Width: | Height: | Size: 705 B |
BIN
minetestforfun_game/mods/beds/textures/fancy_bed_blue.png
Executable file
After Width: | Height: | Size: 1.0 KiB |
BIN
minetestforfun_game/mods/beds/textures/fancy_bed_green.png
Executable file
After Width: | Height: | Size: 969 B |
Before Width: | Height: | Size: 552 B After Width: | Height: | Size: 552 B |
BIN
minetestforfun_game/mods/beds/textures/fancy_bed_white.png
Executable file
After Width: | Height: | Size: 1.0 KiB |
BIN
minetestforfun_game/mods/beds/textures/simple_bed_black.png
Executable file
After Width: | Height: | Size: 1.7 KiB |
BIN
minetestforfun_game/mods/beds/textures/simple_bed_blue.png
Executable file
After Width: | Height: | Size: 2.3 KiB |
BIN
minetestforfun_game/mods/beds/textures/simple_bed_green.png
Executable file
After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
BIN
minetestforfun_game/mods/beds/textures/simple_bed_white.png
Executable file
After Width: | Height: | Size: 2.1 KiB |
|
@ -1939,7 +1939,7 @@ minetest.register_node("default:torch", {
|
|||
},
|
||||
groups = {choppy = 2, dig_immediate = 3, flammable = 1, attached_node = 1,
|
||||
hot = 2},
|
||||
legacy_wallmounter = true,
|
||||
legacy_wallmounted = true,
|
||||
sounds = default.node_sound_wood_defaults(),
|
||||
})
|
||||
|
||||
|
|