Texturesize and Recipes changed.
This commit is contained in:
parent
c49a456460
commit
b5daec2d86
3
depends.txt
Normal file
3
depends.txt
Normal file
@ -0,0 +1,3 @@
|
||||
default
|
||||
wool
|
||||
|
45
init.lua
45
init.lua
@ -1,10 +1,12 @@
|
||||
minetest.register_node("billboard:bb_white", {
|
||||
description = "Billboard white",
|
||||
minetest.register_node("billboard:bb_white_white", {
|
||||
description = "Billboard white_white",
|
||||
drawtype = "signlike",
|
||||
visual_scale = 5,
|
||||
tiles = {"bb_white.png"},
|
||||
inventory_image = "bb_white.png",
|
||||
wield_image = "bb_white.png",
|
||||
visual_scale = 3,
|
||||
tiles = {
|
||||
"bb_white_white.png" -- up
|
||||
},
|
||||
inventory_image = "bb_white_white.png",
|
||||
wield_image = "bb_white_white.png",
|
||||
wield_scale = {x=1, y=1, z=1},
|
||||
paramtype = "light",
|
||||
paramtype2 = "wallmounted",
|
||||
@ -21,21 +23,23 @@ minetest.register_node("billboard:bb_white", {
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "billboard:bb_white",
|
||||
output = "billboard:bb_white_white",
|
||||
recipe = {
|
||||
{"group:stick", "group:stick"},
|
||||
{"default:sign_wall_wood", "wool:white"},
|
||||
{"group:stick", "group:stick"}
|
||||
{"group:stick", "group:stick", "group:stick"},
|
||||
{"default:sign_wall_wood", "wool:white", "wool:white"},
|
||||
{"group:stick", "group:stick", "group:stick"}
|
||||
}
|
||||
})
|
||||
|
||||
minetest.register_node("billboard:bb_yellow", {
|
||||
description = "Billboard yellow",
|
||||
minetest.register_node("billboard:bb_yellow_yellow", {
|
||||
description = "Billboard yellow_yellow",
|
||||
drawtype = "signlike",
|
||||
visual_scale = 5,
|
||||
tiles = {"bb_yellow.png"},
|
||||
inventory_image = "bb_yellow.png",
|
||||
wield_image = "bb_yellow.png",
|
||||
visual_scale = 3,
|
||||
tiles = {
|
||||
"bb_yellow_yellow.png" -- up
|
||||
},
|
||||
inventory_image = "bb_yellow_yellow.png",
|
||||
wield_image = "bb_yellow_yellow.png",
|
||||
wield_scale = {x=1, y=1, z=1},
|
||||
paramtype = "light",
|
||||
paramtype2 = "wallmounted",
|
||||
@ -50,12 +54,11 @@ minetest.register_node("billboard:bb_yellow", {
|
||||
legacy_wallmounted = true,
|
||||
|
||||
})
|
||||
|
||||
minetest.register_craft({
|
||||
output = "billboard:bb_yellow",
|
||||
output = "billboard:bb_yellow_yellow",
|
||||
recipe = {
|
||||
{"group:stick", "group:stick"},
|
||||
{"default:sign_wall_wood", "wool:yellow"},
|
||||
{"group:stick", "group:stick"}
|
||||
{"group:stick", "group:stick", "group:stick"},
|
||||
{"default:sign_wall_wood", "wool:yellow", "wool:yellow"},
|
||||
{"group:stick", "group:stick", "group:stick"}
|
||||
}
|
||||
})
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 226 KiB |
BIN
textures/bb_white_white.png
Normal file
BIN
textures/bb_white_white.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 223 KiB |
Binary file not shown.
Before Width: | Height: | Size: 249 KiB |
BIN
textures/bb_yellow_yellow.png
Normal file
BIN
textures/bb_yellow_yellow.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 215 KiB |
Loading…
x
Reference in New Issue
Block a user