Files
impostor/inc/decision/decision.start_discussion.lua
Zoltan Timar b4dcdaba58
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
ci/woodpecker/pr/woodpecker Pipeline failed
feat: added ascension meter, done 0-1 asc logic, fixed mysterious man behaviours
2026-03-19 18:22:06 +01:00

19 lines
471 B
Lua

Decision.register({
id = "start_discussion",
label = function()
if Context.have_met_sumphore then
return "Talk to Sumphore"
end
return "Talk to the homeless guy"
end,
handle = function()
if not Context.have_met_sumphore then
Discussion.start("homeless_guy", "game")
elseif Ascension.get_level() == 0 then
Discussion.start("homeless_guy", "game", 4)
else
Discussion.start("sumphore_day_3", "game")
end
end,
})