feat: added sumphore & coworker discussions until asc 3, fixed game flow bugs, added mysterious man screen texts
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed

This commit is contained in:
Zoltan Timar
2026-03-21 00:12:15 +01:00
parent f79233521d
commit 05091c7af2
17 changed files with 489 additions and 284 deletions

View File

@@ -5,6 +5,9 @@ local _day_increase_handlers = {}
--- @within Day
function Day.increase()
Context.day_count = Context.day_count + 1
if Context.day_count == 3 then
Context.should_ascend = true
end
for _, handler in ipairs(_day_increase_handlers) do
handler()
end
@@ -25,7 +28,8 @@ Day.register_handler(function()
end)
Day.register_handler(function()
if Context.day_count == 3 then
if Context.should_ascend then
Ascension.increase()
end
Context.should_ascend = false
end)