Browse Source

Create a new WiFi chest texture from scratch (and add a separate bottom texture).

master
poikilos 3 years ago
parent
commit
9304dd5b2c
  1. 2
      Bucket_Game-branches/wifi-chest-remake-vs-211031/mods/coderbuild/more_chests/README.md
  2. BIN
      Bucket_Game-branches/wifi-chest-remake-vs-211031/mods/coderbuild/more_chests/textures/wifi_bottom.png
  3. BIN
      Bucket_Game-branches/wifi-chest-remake-vs-211031/mods/coderbuild/more_chests/textures/wifi_front.png
  4. BIN
      Bucket_Game-branches/wifi-chest-remake-vs-211031/mods/coderbuild/more_chests/textures/wifi_side.png
  5. BIN
      Bucket_Game-branches/wifi-chest-remake-vs-211031/mods/coderbuild/more_chests/textures/wifi_top.png
  6. 2
      Bucket_Game-branches/wifi-chest-remake-vs-211031/mods/coderbuild/more_chests/wifi.lua

2
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.

BIN
Bucket_Game-branches/wifi-chest-remake-vs-211031/mods/coderbuild/more_chests/textures/wifi_bottom.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 125 B

BIN
Bucket_Game-branches/wifi-chest-remake-vs-211031/mods/coderbuild/more_chests/textures/wifi_front.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 284 B

BIN
Bucket_Game-branches/wifi-chest-remake-vs-211031/mods/coderbuild/more_chests/textures/wifi_side.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 340 B

BIN
Bucket_Game-branches/wifi-chest-remake-vs-211031/mods/coderbuild/more_chests/textures/wifi_top.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 254 B

2
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,},

Loading…
Cancel
Save