cb2251529a
Surround stone with pumwater on at least 4 sides. If surrounded on all 6 faces, should take about 30 minutes on average.
32 lines
711 B
Lua
32 lines
711 B
Lua
-- LUALOCALS < ---------------------------------------------------------
|
|
local minetest, nodecore
|
|
= minetest, nodecore
|
|
-- LUALOCALS > ---------------------------------------------------------
|
|
|
|
local modname = minetest.get_current_modname()
|
|
|
|
nodecore.register_hint("quench pumwater to amalgamation",
|
|
"group:amalgam",
|
|
{true, "group:amalgam", "group:lava"}
|
|
)
|
|
|
|
nodecore.register_hint("find pumice",
|
|
modname .. ":pumice",
|
|
{true, "group:amalgam", "group:lava"}
|
|
)
|
|
|
|
nodecore.register_hint("harden stone",
|
|
"stone hardened",
|
|
"group:lava"
|
|
)
|
|
|
|
nodecore.register_hint("weaken stone by soaking",
|
|
"stone softened",
|
|
"group:lava"
|
|
)
|
|
|
|
nodecore.register_hint("melt stone into pumwater",
|
|
"stone melted",
|
|
"group:lava"
|
|
)
|