50 lines
1.3 KiB
Lua
Raw Normal View History

-- LUALOCALS < ---------------------------------------------------------
2020-09-11 00:29:58 -04:00
local minetest, nodecore
= minetest, nodecore
-- LUALOCALS > ---------------------------------------------------------
2020-09-11 00:29:58 -04:00
local modname = minetest.get_current_modname()
nodecore.register_hint("assemble a stone-tipped stylus",
"assemble stylus",
{"nc_tree:stick", "nc_stonework:chip"}
)
nodecore.register_hint("etch pliant concrete with a stylus",
"stylus etch",
"assemble stylus"
)
nodecore.register_hint("change a stylus pattern",
2020-09-26 14:55:15 -04:00
"stylus train",
2020-09-11 00:29:58 -04:00
"stylus etch"
)
nodecore.register_hint("mix gravel into ash to make aggregate",
"mix aggregate",
{"nc_terrain:gravel_loose", "nc_fire:ash"}
)
2020-09-11 00:29:58 -04:00
nodecore.register_hint("mix sand into ash to make render",
"mix render",
2020-09-11 00:29:58 -04:00
{"nc_terrain:sand_loose", "nc_fire:ash"}
)
nodecore.register_hint("mix dirt into ash to make adobe mix",
"mix mud",
2020-09-11 00:29:58 -04:00
{"nc_terrain:dirt_loose", "nc_fire:ash"}
)
nodecore.register_hint("add coal to aggregate to make tarstone",
"craft:" .. modname .. ":coalaggregate",
{"nc_fire:lump_coal", modname .. ":aggregate"}
)
nodecore.register_hint("wet a concrete mix",
"group:concrete_wet",
"group:concrete_powder"
)
nodecore.register_hint("set concrete to pliant",
"group:concrete_etchable",
"group:concrete_wet"
)
nodecore.register_hint("cure pliant concrete fully",
"cure pliant concrete",
"group:concrete_etchable"
)