Compare commits

...

5 Commits

Author SHA1 Message Date
Don 0fdc246a1b Update init.lua 2016-09-23 12:58:00 -07:00
DonBatman ac0959b730 resized screenshot 2016-03-18 08:14:38 -07:00
DonBatman 9bf4670f2a Fixed issue with furnace 2016-03-15 10:30:04 -07:00
Don 1df7199bd8 Update Readme.md 2016-03-15 10:28:03 -07:00
DonBatman 2834985d25 Code cleanup 2016-03-14 18:29:59 -07:00
3 changed files with 22 additions and 1 deletions

12
Readme.md Normal file
View File

@ -0,0 +1,12 @@
Mysponge
Soak up water with this sponge.
Put the wet sponge in the furnace and get water.
Leave the sponge sit out and it will dry.
Licence - WTFPL
Forum - https://forum.minetest.net/viewtopic.php?f=9&t=11539

View File

@ -43,12 +43,14 @@ local air_nodes = {
for i in ipairs(air_nodes) do
local airnode = air_nodes[i][1]
minetest.register_node("mysponge:"..airnode,{
-- description = "Air 1",
description = "Air",
inventory_image = "unknown_node.png",
tiles = {"mysponge_air.png"},
drawtype = "allfaces",
walkable = false,
pointable = false,
paramtype = "light",
drop = "",
groups = {not_in_creative_inventory=1}
})
end
@ -170,6 +172,13 @@ minetest.register_craft({
cooktime = 5,
replacements = {{"mysponge:sponge_soaked", "mysponge:sponge_dry"}},
})
minetest.register_craft({
type = "cooking",
output = "default:water_source 2",
recipe = "mysponge:sponge_wet",
cooktime = 5,
replacements = {{"mysponge:sponge_wet", "mysponge:sponge_dry"}},
})
minetest.register_craft({
type = "cooking",
output = "mysponge:dry_leaves",

Binary file not shown.

Before

Width:  |  Height:  |  Size: 275 KiB

After

Width:  |  Height:  |  Size: 136 KiB