Changes to be committed:
modified: dropbox.lua modified: secret.lua modified: shared.lua deleted: textures/chests.0gb.us_dropbox_front.png deleted: textures/chests.0gb.us_dropbox_right.png deleted: textures/chests.0gb.us_secret_front.png deleted: textures/chests.0gb.us_shared_front.png deleted: textures/chests.0gb.us_wifi_front_animated.png deleted: textures/chests.0gb.us_wifi_side.png deleted: textures/chests.0gb.us_wifi_top.png modified: wifi.lua
|
@ -7,8 +7,8 @@ end
|
||||||
|
|
||||||
minetest.register_node("more_chests:dropbox", {
|
minetest.register_node("more_chests:dropbox", {
|
||||||
description = "Dropbox",
|
description = "Dropbox",
|
||||||
tiles = {"default_chest_top.png", "default_chest_top.png", "chests.0gb.us_dropbox_right.png",
|
tiles = {"default_chest_top.png", "default_chest_top.png", "dropbox_right.png",
|
||||||
"default_chest_side.png", "default_chest_side.png", "chests.0gb.us_dropbox_front.png"},
|
"default_chest_side.png", "default_chest_side.png", "dropbox_front.png"},
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2},
|
groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2},
|
||||||
legacy_facedir_simple = true,
|
legacy_facedir_simple = true,
|
||||||
|
|
|
@ -15,7 +15,7 @@ local closed = "size[2,1]"..
|
||||||
minetest.register_node("more_chests:secret", {
|
minetest.register_node("more_chests:secret", {
|
||||||
description = "Secret Chest",
|
description = "Secret Chest",
|
||||||
tiles = {"default_chest_top.png", "default_chest_top.png", "default_chest_side.png",
|
tiles = {"default_chest_top.png", "default_chest_top.png", "default_chest_side.png",
|
||||||
"default_chest_side.png", "default_chest_side.png", "chests.0gb.us_secret_front.png"},
|
"default_chest_side.png", "default_chest_side.png", "secret_front.png"},
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2},
|
groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2},
|
||||||
legacy_facedir_simple = true,
|
legacy_facedir_simple = true,
|
||||||
|
|
|
@ -22,7 +22,7 @@ end
|
||||||
minetest.register_node("chests_0gb_us:shared", {
|
minetest.register_node("chests_0gb_us:shared", {
|
||||||
description = "Shared Chest",
|
description = "Shared Chest",
|
||||||
tiles = {"default_chest_top.png", "default_chest_top.png", "default_chest_side.png",
|
tiles = {"default_chest_top.png", "default_chest_top.png", "default_chest_side.png",
|
||||||
"default_chest_side.png", "default_chest_side.png", "chests.0gb.us_shared_front.png"},
|
"default_chest_side.png", "default_chest_side.png", "shared_front.png"},
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2},
|
groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2},
|
||||||
legacy_facedir_simple = true,
|
legacy_facedir_simple = true,
|
||||||
|
|
Before Width: | Height: | Size: 943 B |
Before Width: | Height: | Size: 765 B |
Before Width: | Height: | Size: 940 B |
Before Width: | Height: | Size: 852 B |
Before Width: | Height: | Size: 462 B |
Before Width: | Height: | Size: 244 B |
Before Width: | Height: | Size: 239 B |
6
wifi.lua
|
@ -1,8 +1,8 @@
|
||||||
minetest.register_node("more_chests:wifi", {
|
minetest.register_node("more_chests:wifi", {
|
||||||
description = "Wifi Chest",
|
description = "Wifi Chest",
|
||||||
tiles = {"chests.0gb.us_wifi_top.png", "chests.0gb.us_wifi_top.png", "chests.0gb.us_wifi_side.png",
|
tiles = {"wifi_top.png", "wifi_top.png", "wifi_side.png",
|
||||||
"chests.0gb.us_wifi_side.png", "chests.0gb.us_wifi_side.png",
|
"wifi_side.png", "wifi_side.png",
|
||||||
{name="chests.0gb.us_wifi_front_animated.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=2.0}}
|
{name="wifi_front_animated.png", animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=2.0}}
|
||||||
},
|
},
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2},
|
groups = {snappy=2,choppy=2,oddly_breakable_by_hand=2},
|
||||||
|
|