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.
40 lines
850 B
Lua
40 lines
850 B
Lua
-- LUALOCALS < ---------------------------------------------------------
|
|
local nodecore
|
|
= nodecore
|
|
-- LUALOCALS > ---------------------------------------------------------
|
|
|
|
nodecore.register_hint("make fire by rubbing sticks together",
|
|
"stick fire starting",
|
|
"nc_tree:stick"
|
|
)
|
|
|
|
nodecore.register_hint("find ash",
|
|
"nc_fire:ash",
|
|
"stick fire starting"
|
|
)
|
|
|
|
nodecore.register_hint("find charcoal",
|
|
"group:charcoal",
|
|
"stick fire starting"
|
|
)
|
|
|
|
nodecore.register_hint("chop up charcoal",
|
|
{true,
|
|
"nc_fire:lump_coal",
|
|
"chop nc_fire:coal1",
|
|
"chop nc_fire:coal2",
|
|
"chop nc_fire:coal3",
|
|
"chop nc_fire:coal4",
|
|
"chop nc_fire:coal5",
|
|
"chop nc_fire:coal6",
|
|
"chop nc_fire:coal7",
|
|
"chop nc_fire:coal8"
|
|
},
|
|
"group:charcoal"
|
|
)
|
|
|
|
nodecore.register_hint("pack high-quality charcoal",
|
|
"nc_fire:coal" .. nodecore.fire_max,
|
|
"nc_fire:lump_coal"
|
|
)
|