add new white simple bed, change red bed recipes to use red wool, add my own screenshot
This commit is contained in:
parent
e9bc10be8d
commit
9e403b5e02
@ -35,8 +35,8 @@ death. Check configuration section for more info.
|
||||
|
||||
* More beds:
|
||||
|
||||
It features two more beds, the "Blue Simple Bed" like the "Simple Bed"
|
||||
but in blue, and the "Pink Fancy Bed" like the "Fancy Bed" but in pink.
|
||||
It features more beds, so along with the Red simple bed we now have White and
|
||||
Blue, and the fance beds has the original Red and now Pink.
|
||||
|
||||
#### Dependencies
|
||||
|
||||
|
22
beds.lua
22
beds.lua
@ -3,7 +3,7 @@ local S = beds.get_translator
|
||||
-- Fancy shaped bed
|
||||
|
||||
beds.register_bed("beds:fancy_bed", {
|
||||
description = S("Fancy Bed"),
|
||||
description = S("Red Fancy Bed"),
|
||||
inventory_image = "beds_bed_fancy.png",
|
||||
wield_image = "beds_bed_fancy.png",
|
||||
tiles = {"beds_fancy_bed.png", "default_wood.png"},
|
||||
@ -12,7 +12,7 @@ beds.register_bed("beds:fancy_bed", {
|
||||
collisionbox = {-0.5, -0.5, -0.5, 0.5, -0.06, 1.5},
|
||||
recipe = {
|
||||
{"", "", "group:stick"},
|
||||
{"wool:white", "wool:white", "wool:white"},
|
||||
{"wool:red", "wool:red", "wool:white"},
|
||||
{"group:wood", "group:wood", "group:wood"}
|
||||
}
|
||||
})
|
||||
@ -34,8 +34,22 @@ beds.register_bed("beds:fancy_bed_pink", {
|
||||
|
||||
-- Simple shaped bed
|
||||
|
||||
beds.register_bed("beds:bed_white", {
|
||||
description = S("White Simple Bed"),
|
||||
inventory_image = "beds_bed_white.png",
|
||||
wield_image = "beds_bed_white.png",
|
||||
tiles = {"beds_simple_bed_white.png"},
|
||||
mesh = "beds_simple_bed.obj",
|
||||
selectionbox = {-0.5, -0.5, -0.5, 0.5, 0.06, 1.5},
|
||||
collisionbox = {-0.5, -0.5, -0.5, 0.5, 0.06, 1.5},
|
||||
recipe = {
|
||||
{"wool:white", "wool:white", "wool:white"},
|
||||
{"group:wood", "group:wood", "group:wood"}
|
||||
}
|
||||
})
|
||||
|
||||
beds.register_bed("beds:bed", {
|
||||
description = S("Simple Bed"),
|
||||
description = S("Red Simple Bed"),
|
||||
inventory_image = "beds_bed.png",
|
||||
wield_image = "beds_bed.png",
|
||||
tiles = {"beds_simple_bed.png"},
|
||||
@ -43,7 +57,7 @@ beds.register_bed("beds:bed", {
|
||||
selectionbox = {-0.5, -0.5, -0.5, 0.5, 0.06, 1.5},
|
||||
collisionbox = {-0.5, -0.5, -0.5, 0.5, 0.06, 1.5},
|
||||
recipe = {
|
||||
{"wool:white", "wool:white", "wool:white"},
|
||||
{"wool:red", "wool:red", "wool:white"},
|
||||
{"group:wood", "group:wood", "group:wood"}
|
||||
}
|
||||
})
|
||||
|
@ -61,5 +61,5 @@ For more details:
|
||||
http://creativecommons.org/licenses/by-sa/3.0/
|
||||
|
||||
|
||||
WTFPL license applies to screenshot.jpg file by jp from his mesh beds mod:
|
||||
WTFPL license applies to bed .obj files by jp from mesh beds mod:
|
||||
https://forum.minetest.net/viewtopic.php?t=11817
|
||||
|
BIN
screenshot.jpg
BIN
screenshot.jpg
Binary file not shown.
Before Width: | Height: | Size: 215 KiB After Width: | Height: | Size: 164 KiB |
BIN
textures/beds_bed_white.png
Normal file
BIN
textures/beds_bed_white.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 424 B |
BIN
textures/beds_simple_bed_white.png
Normal file
BIN
textures/beds_simple_bed_white.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.0 KiB |
Loading…
x
Reference in New Issue
Block a user