Files
realworld/internal/content/screen/police_station.go
T
mr.zero bbc3faf3d7
ci/woodpecker/push/ebitengine Pipeline was successful
tmp backgrounds
2026-08-29 22:30:22 +02:00

21 lines
721 B
Go

package screen
import "git.teletypegames.org/games/realworld/internal/names"
// policeStation is where Noodle is held for dealing in cracked Armillas, and
// where a clerk quietly tips Paul off about the hiding place
// (wiki: entities, Paul's timeline 4 and 15).
//
// The wiki's graph splits it three ways — utcafront → recepció → kihallgató —
// but the deck paints it as one screen, so the reception desk, the waiting
// room and the interview window are hotspots inside this one, not screens of
// their own.
func policeStation() screen {
return screen{
name: names.ScreenPoliceStation,
title: "SFPD — STATION AND HOLDING",
background: names.BgPoliceStation,
onSelector: true,
}
}