18b01c1ae7
Hints themselves have not been tided up much, but this makes the project of fixing the hints for each mod a little more manageable and breaks up the hard-to-navigate single monolithic hints file in the old guide mod. The old guide mod has now been completely retired. Hints are now a full-fledged API-layer standard feature.
25 lines
643 B
Lua
25 lines
643 B
Lua
-- LUALOCALS < ---------------------------------------------------------
|
|
local nodecore
|
|
= nodecore
|
|
-- LUALOCALS > ---------------------------------------------------------
|
|
|
|
nodecore.register_hint("break cobble into chips",
|
|
"break cobble to chips",
|
|
"nc_terrain:cobble_loose"
|
|
)
|
|
|
|
nodecore.register_hint("pack stone chips back into cobble",
|
|
"repack chips to cobble",
|
|
"nc_stonework:chip"
|
|
)
|
|
|
|
nodecore.register_hint("put a stone tip onto a wooden tool",
|
|
{true,
|
|
"assemble nc_stonework:tool_mallet",
|
|
"assemble nc_stonework:tool_spade",
|
|
"assemble nc_stonework:tool_hatchet",
|
|
"assemble nc_stonework:tool_pick"
|
|
},
|
|
"nc_stonework:chip"
|
|
)
|