Files
impostor/inc/screen/screen.home.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

17 lines
339 B
Lua

Screen.register({
id = "home",
name = "Home",
decisions = {
"go_to_toilet",
"go_to_walking_to_office",
"go_to_sleep",
"go_to_end",
},
background = "bedroom",
draw = function()
if Context.home_norman_visible and Window.get_current_id() == "game" then
Sprite.draw_at("norman", 100, 80)
end
end
})