mirror of
https://github.com/Dragonop/claycrafter.git
synced 2025-06-29 12:00:23 +02:00
Compare commits
5 Commits
Removing-c
...
revert-2-R
Author | SHA1 | Date | |
---|---|---|---|
a16266c9e0 | |||
45a51073ee | |||
156c4029ca | |||
af5e4dc082 | |||
2e86f87e09 |
@ -6,7 +6,7 @@ Dependencies:
|
||||
-Vessels
|
||||
-Bucket
|
||||
|
||||
License for Code
|
||||
#####License for Code
|
||||
|
||||
Copyright (C) 2010-2013 Dragonop <joaco-mono@hotmail.com>
|
||||
|
||||
@ -24,6 +24,6 @@ You should have received a copy of the GNU Lesser General Public License along
|
||||
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
||||
|
||||
License for Textures, Models and Sounds
|
||||
#####License for Textures, Models and Sounds
|
||||
|
||||
CC-BY-SA 3.0 UNPORTED. Created by Dragonop
|
||||
|
17
init.lua
17
init.lua
@ -1,3 +1,19 @@
|
||||
--the claycrafter is supposed to be some sort of furnace
|
||||
--that uses compressed dirt and glasses of water to make clay, it's not needed to use the mod currently.
|
||||
|
||||
minetest.register_node("claycrafter:claycrafter", {
|
||||
description = "Clay crafter",
|
||||
tiles = {
|
||||
"claycrafter_claycrafter_up.png",
|
||||
"claycrafter_claycrafter_down.png",
|
||||
"claycrafter_claycrafter_side.png",
|
||||
"claycrafter_claycrafter_side.png",
|
||||
"claycrafter_claycrafter_back.png",
|
||||
"claycrafter_claycrafter_front.png",
|
||||
},
|
||||
groups = {oddly_breakable_by_hand = 1, choppy = 1}
|
||||
})
|
||||
|
||||
--Compressed dirt
|
||||
minetest.register_node("claycrafter:compressed_dirt", {
|
||||
description = "Compressed Dirt",
|
||||
@ -13,7 +29,6 @@ minetest.register_craft({
|
||||
}
|
||||
})
|
||||
|
||||
|
||||
--Glass of water
|
||||
minetest.register_craftitem("claycrafter:glass_of_water", {
|
||||
description = "Glass of Water",
|
||||
|
BIN
screenshot.png
Normal file
BIN
screenshot.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 11 KiB |
Binary file not shown.
Before Width: | Height: | Size: 515 B |
Binary file not shown.
Before Width: | Height: | Size: 594 B |
Binary file not shown.
Before Width: | Height: | Size: 655 B |
Binary file not shown.
Before Width: | Height: | Size: 410 B |
Binary file not shown.
Before Width: | Height: | Size: 554 B |
Reference in New Issue
Block a user