add missing textures & add screenshot
@ -4,6 +4,8 @@
|
||||
|
||||
A [Minetest](https://www.minetest.net/) mod to exchange nodes into other nodes. This is mod is inspired by the "Equivalent Exchange" mod for Minecraft.
|
||||
|
||||
![In Game Screenshot](screenshot.png)
|
||||
|
||||
## License
|
||||
Copyright (C) 2021 Leo Spratt
|
||||
|
||||
|
@ -116,6 +116,14 @@ end
|
||||
|
||||
minetest.register_node("element_exchange:element_constructor", {
|
||||
description = "Element Constructor",
|
||||
tiles = {
|
||||
"ee_constructor_up.png",
|
||||
"ee_constructor_down.png",
|
||||
"ee_constructor_right.png",
|
||||
"ee_constructor_right.png",
|
||||
"ee_constructor_right.png",
|
||||
"ee_constructor_right.png"
|
||||
},
|
||||
groups = {cracky = 2},
|
||||
is_ground_content = false,
|
||||
can_dig=can_dig,
|
||||
|
@ -95,6 +95,14 @@ end
|
||||
|
||||
minetest.register_node("element_exchange:element_deconstructor", {
|
||||
description = "Element Deconstructor",
|
||||
tiles = {
|
||||
"ee_deconstructor_up.png",
|
||||
"ee_deconstructor_down.png",
|
||||
"ee_deconstructor_right.png",
|
||||
"ee_deconstructor_right.png",
|
||||
"ee_deconstructor_right.png",
|
||||
"ee_deconstructor_right.png"
|
||||
},
|
||||
groups = {cracky = 2},
|
||||
is_ground_content = false,
|
||||
can_dig = can_dig,
|
||||
|
BIN
screenshot.png
Normal file
After Width: | Height: | Size: 100 KiB |
BIN
textures/ee_constructor_down.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
textures/ee_constructor_right.png
Normal file
After Width: | Height: | Size: 613 B |
BIN
textures/ee_constructor_up.png
Normal file
After Width: | Height: | Size: 595 B |
BIN
textures/ee_deconstructor_down.png
Normal file
After Width: | Height: | Size: 547 B |
BIN
textures/ee_deconstructor_right.png
Normal file
After Width: | Height: | Size: 614 B |
BIN
textures/ee_deconstructor_up.png
Normal file
After Width: | Height: | Size: 598 B |