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
|
-Vessels
|
||||||
-Bucket
|
-Bucket
|
||||||
|
|
||||||
License for Code
|
#####License for Code
|
||||||
|
|
||||||
Copyright (C) 2010-2013 Dragonop <joaco-mono@hotmail.com>
|
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.,
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
||||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
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
|
CC-BY-SA 3.0 UNPORTED. Created by Dragonop
|
||||||
|
19
init.lua
19
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
|
--Compressed dirt
|
||||||
minetest.register_node("claycrafter:compressed_dirt", {
|
minetest.register_node("claycrafter:compressed_dirt", {
|
||||||
description = "Compressed Dirt",
|
description = "Compressed Dirt",
|
||||||
@ -13,7 +29,6 @@ minetest.register_craft({
|
|||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
--Glass of water
|
--Glass of water
|
||||||
minetest.register_craftitem("claycrafter:glass_of_water", {
|
minetest.register_craftitem("claycrafter:glass_of_water", {
|
||||||
description = "Glass of Water",
|
description = "Glass of Water",
|
||||||
@ -40,4 +55,4 @@ minetest.register_craft({
|
|||||||
replacements = {
|
replacements = {
|
||||||
{"claycrafter:glass_of_water", "vessels:drinking_glass"},
|
{"claycrafter:glass_of_water", "vessels:drinking_glass"},
|
||||||
}
|
}
|
||||||
})
|
})
|
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