New textures
|
@ -7,8 +7,8 @@ end
|
|||
|
||||
minetest.register_node("more_chests:dropbox", {
|
||||
description = "Dropbox",
|
||||
tiles = {"default_chest_top.png", "default_chest_top.png", "dropbox_right.png",
|
||||
"default_chest_side.png", "default_chest_side.png", "dropbox_front.png"},
|
||||
tiles = {"dropbox_top.png", "dropbox_top.png", "dropbox_side.png",
|
||||
"dropbox_side.png", "dropbox_side.png", "dropbox_front.png"},
|
||||
paramtype2 = "facedir",
|
||||
groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2, tubedevice = 1, tubedevice_receiver = 1},
|
||||
-- Pipeworks
|
||||
|
|
|
@ -16,8 +16,8 @@ local closed = "size[2,1]"..
|
|||
|
||||
minetest.register_node("more_chests:secret", {
|
||||
description = "Secret Chest",
|
||||
tiles = {"default_chest_top.png", "default_chest_top.png", "default_chest_side.png",
|
||||
"default_chest_side.png", "default_chest_side.png", "secret_front.png"},
|
||||
tiles = {"secret_top.png", "secret_top.png", "secret_side.png",
|
||||
"secret_side.png", "secret_side.png", "secret_front.png"},
|
||||
paramtype2 = "facedir",
|
||||
groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2, tubedevice = 1, tubedevice_receiver = 1},
|
||||
-- Pipeworks
|
||||
|
|
|
@ -23,8 +23,8 @@ end
|
|||
|
||||
minetest.register_node("more_chests:shared", {
|
||||
description = "Shared Chest",
|
||||
tiles = {"default_chest_top.png", "default_chest_top.png", "default_chest_side.png",
|
||||
"default_chest_side.png", "default_chest_side.png", "shared_front.png"},
|
||||
tiles = {"shared_top.png", "shared_top.png", "shared_side.png",
|
||||
"shared_side.png", "shared_side.png", "shared_front.png"},
|
||||
paramtype2 = "facedir",
|
||||
groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2, tubedevice = 1, tubedevice_receiver = 1},
|
||||
-- Pipeworks
|
||||
|
|
Before Width: | Height: | Size: 818 B After Width: | Height: | Size: 502 B |
BIN
textures/dropbox_side.png
Normal file
After Width: | Height: | Size: 435 B |
BIN
textures/dropbox_top.png
Normal file
After Width: | Height: | Size: 477 B |
Before Width: | Height: | Size: 807 B After Width: | Height: | Size: 455 B |
BIN
textures/secret_side.png
Normal file
After Width: | Height: | Size: 421 B |
BIN
textures/secret_top.png
Normal file
After Width: | Height: | Size: 465 B |
Before Width: | Height: | Size: 818 B After Width: | Height: | Size: 502 B |
BIN
textures/shared_side.png
Normal file
After Width: | Height: | Size: 435 B |
BIN
textures/shared_top.png
Normal file
After Width: | Height: | Size: 481 B |
BIN
textures/wifi_front.png
Normal file
After Width: | Height: | Size: 864 B |
Before Width: | Height: | Size: 462 B |
Before Width: | Height: | Size: 244 B After Width: | Height: | Size: 833 B |
Before Width: | Height: | Size: 239 B After Width: | Height: | Size: 741 B |
4
wifi.lua
|
@ -1,9 +1,7 @@
|
|||
minetest.register_node("more_chests:wifi", {
|
||||
description = "Wifi Chest",
|
||||
tiles = {"wifi_top.png", "wifi_top.png", "wifi_side.png",
|
||||
"wifi_side.png", "wifi_side.png",
|
||||
{name="wifi_front_animated.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=2.0}}
|
||||
},
|
||||
"wifi_side.png", "wifi_side.png", "wifi_front.png"},
|
||||
paramtype2 = "facedir",
|
||||
groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2,},
|
||||
legacy_facedir_simple = true,
|
||||
|
|