2021-07-05 11:34:33 -04:00
|
|
|
-- LUALOCALS < ---------------------------------------------------------
|
|
|
|
local nodecore
|
|
|
|
= nodecore
|
|
|
|
-- LUALOCALS > ---------------------------------------------------------
|
|
|
|
|
|
|
|
nodecore.register_hint("find a rush",
|
|
|
|
"nc_flora:rush"
|
|
|
|
)
|
|
|
|
|
|
|
|
nodecore.register_hint("dry out a rush",
|
|
|
|
"nc_flora:rush_dry",
|
|
|
|
"nc_flora:rush"
|
|
|
|
)
|
|
|
|
|
2023-01-18 21:11:04 -05:00
|
|
|
nodecore.register_hint("grow a rush on soil near moisture",
|
2021-07-05 11:34:33 -04:00
|
|
|
"rush spread",
|
|
|
|
"nc_flora:rush"
|
|
|
|
)
|
|
|
|
|
|
|
|
nodecore.register_hint("find a sedge",
|
|
|
|
"group:flora_sedges"
|
|
|
|
)
|
|
|
|
|
|
|
|
nodecore.register_hint("pick a sedge",
|
|
|
|
"inv:nc_flora:sedge_1",
|
|
|
|
"group:flora_sedges"
|
|
|
|
)
|
|
|
|
|
2023-01-18 21:11:04 -05:00
|
|
|
nodecore.register_hint("grow a sedge on grass near moisture",
|
2021-07-05 11:34:33 -04:00
|
|
|
"sedge growth",
|
|
|
|
"group:flora_sedges"
|
|
|
|
)
|
|
|
|
|
|
|
|
nodecore.register_hint("find a flower",
|
2021-08-14 08:29:27 -04:00
|
|
|
"group:flower_living",
|
|
|
|
"group:flora_sedges"
|
2021-07-05 11:34:33 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
nodecore.register_hint("wilt a flower",
|
|
|
|
"group:flower_wilted",
|
|
|
|
"group:flower_living"
|
|
|
|
)
|
|
|
|
|
2023-01-18 21:11:04 -05:00
|
|
|
nodecore.register_hint("grow a flower on soil near moisture",
|
2021-07-05 11:34:33 -04:00
|
|
|
"flower spread",
|
|
|
|
"group:flower_living"
|
|
|
|
)
|
|
|
|
|
|
|
|
nodecore.register_hint("breed a new flower variety",
|
|
|
|
"group:flower_mutant",
|
|
|
|
{"group:flower_living", "flower spread"}
|
|
|
|
)
|
2021-12-16 22:31:50 -05:00
|
|
|
|
|
|
|
nodecore.register_hint("pack sedges into thatch",
|
|
|
|
"pack thatch",
|
|
|
|
"inv:nc_flora:sedge_1"
|
|
|
|
)
|
|
|
|
|
|
|
|
nodecore.register_hint("pack dry rushes into wicker",
|
|
|
|
"pack wicker",
|
|
|
|
"nc_flora:rush_dry"
|
|
|
|
)
|