76 lines
2.0 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",
"styles train",
"stylus etch"
)
nodecore.register_hint("mix gravel into ash to make aggregate",
2020-09-11 00:29:58 -04:00
modname .. ":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",
modname .. ":render",
{"nc_terrain:sand_loose", "nc_fire:ash"}
)
nodecore.register_hint("mix dirt into ash to make adobe mix",
modname .. ":mud",
{"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"
)
2020-09-11 00:29:58 -04:00
nodecore.register_hint("chisel sandstone bricks",
"chisel sandstone bricks",
{modname .. ":sandstone", "group:chisel"}
)
nodecore.register_hint("chisel adobe bricks",
"chisel adobe bricks",
{modname .. ":adobe", "group:chisel"}
)
nodecore.register_hint("chisel tarstone bricks",
"chisel coalstone bricks",
{modname .. ":coalstone", "group:chisel"}
)
nodecore.register_hint("bond sandstone bricks",
"bond sandstone bricks",
"chisel sandstone bricks"
)
nodecore.register_hint("bond adobe bricks",
"bond adobe bricks",
"chisel adobe bricks"
)
nodecore.register_hint("bond tarstone bricks",
"bond coalstone bricks",
"chisel coalstone bricks"
)