diff --git a/Bucket_Game-branches/wifi-chest-remake-vs-211031/mods/coderbuild/more_chests/README.md b/Bucket_Game-branches/wifi-chest-remake-vs-211031/mods/coderbuild/more_chests/README.md index d5dc1f1..b8b94ba 100644 --- a/Bucket_Game-branches/wifi-chest-remake-vs-211031/mods/coderbuild/more_chests/README.md +++ b/Bucket_Game-branches/wifi-chest-remake-vs-211031/mods/coderbuild/more_chests/README.md @@ -45,3 +45,5 @@ Wifi Chest A wacky chest that doesn't store it's items in the usual way, but instead, stores them remotely. For that reason, all wifi chests appear to have the same inventory. Due to not actually having an inventory, wifi chests can also be mined, even when they appear to have stuff in them. Lastly, as everyone gets their own wifi account, the items you see in the wifi chest are not the same items anyone else sees. This chest's properties make it nice for keeping secrets, as well as essentially almost doubling your inventory space, if you choose to carry one with you. ``` + +The Wi-Fi chest was more "familiar" than it was "wacky", so Poikilos remade the texture from scratch (and added a separate bottom texture) 2021-10-31. diff --git a/Bucket_Game-branches/wifi-chest-remake-vs-211031/mods/coderbuild/more_chests/textures/wifi_bottom.png b/Bucket_Game-branches/wifi-chest-remake-vs-211031/mods/coderbuild/more_chests/textures/wifi_bottom.png new file mode 100644 index 0000000..229f923 Binary files /dev/null and b/Bucket_Game-branches/wifi-chest-remake-vs-211031/mods/coderbuild/more_chests/textures/wifi_bottom.png differ diff --git a/Bucket_Game-branches/wifi-chest-remake-vs-211031/mods/coderbuild/more_chests/textures/wifi_front.png b/Bucket_Game-branches/wifi-chest-remake-vs-211031/mods/coderbuild/more_chests/textures/wifi_front.png new file mode 100644 index 0000000..8bfc2a2 Binary files /dev/null and b/Bucket_Game-branches/wifi-chest-remake-vs-211031/mods/coderbuild/more_chests/textures/wifi_front.png differ diff --git a/Bucket_Game-branches/wifi-chest-remake-vs-211031/mods/coderbuild/more_chests/textures/wifi_side.png b/Bucket_Game-branches/wifi-chest-remake-vs-211031/mods/coderbuild/more_chests/textures/wifi_side.png new file mode 100644 index 0000000..a3130c8 Binary files /dev/null and b/Bucket_Game-branches/wifi-chest-remake-vs-211031/mods/coderbuild/more_chests/textures/wifi_side.png differ diff --git a/Bucket_Game-branches/wifi-chest-remake-vs-211031/mods/coderbuild/more_chests/textures/wifi_top.png b/Bucket_Game-branches/wifi-chest-remake-vs-211031/mods/coderbuild/more_chests/textures/wifi_top.png new file mode 100644 index 0000000..09f5529 Binary files /dev/null and b/Bucket_Game-branches/wifi-chest-remake-vs-211031/mods/coderbuild/more_chests/textures/wifi_top.png differ diff --git a/Bucket_Game-branches/wifi-chest-remake-vs-211031/mods/coderbuild/more_chests/wifi.lua b/Bucket_Game-branches/wifi-chest-remake-vs-211031/mods/coderbuild/more_chests/wifi.lua index 12bcee0..8cda15b 100644 --- a/Bucket_Game-branches/wifi-chest-remake-vs-211031/mods/coderbuild/more_chests/wifi.lua +++ b/Bucket_Game-branches/wifi-chest-remake-vs-211031/mods/coderbuild/more_chests/wifi.lua @@ -1,6 +1,6 @@ minetest.register_node("more_chests:wifi", { description = "Wifi Chest", - tiles = {"wifi_top.png", "wifi_top.png", "wifi_side.png", + tiles = {"wifi_top.png", "wifi_bottom.png", "wifi_side.png", "wifi_side.png", "wifi_side.png", "wifi_front.png"}, paramtype2 = "facedir", groups = {snappy=2, choppy=2, oddly_breakable_by_hand=2,},