5639ec773c
Lock more things behind prerequisite hints, even if they're not absolutely strictly necessary to complete in that order, if they would commonly be done in that order. This reduces players being overwhelmed by available hints very early in the game, and avoids red herrings like "find lux" which can technically be accomplished but yields no useful results until the player can act on them.
16 lines
323 B
Lua
16 lines
323 B
Lua
-- LUALOCALS < ---------------------------------------------------------
|
|
local nodecore
|
|
= nodecore
|
|
-- LUALOCALS > ---------------------------------------------------------
|
|
|
|
nodecore.register_hint(
|
|
"drop an item",
|
|
"item_drop"
|
|
)
|
|
|
|
nodecore.register_hint(
|
|
"drop all your items at once",
|
|
"aux_item_drop",
|
|
"item_drop"
|
|
)
|