22 lines
772 B
Go
22 lines
772 B
Go
package screen
|
|
|
|
import "git.teletypegames.org/games/realworld/internal/names"
|
|
|
|
// rooftopHideout is Norman's hiding place: an abandoned roof terrace with his
|
|
// personal things, his notes and an old BBS terminal — the emotional high point
|
|
// of the investigation (wiki: entities#helyszinek, timeline 23).
|
|
//
|
|
// It is up the stairs from his flat, and it is one of the places the catalogue
|
|
// puts a terminal.
|
|
func rooftopHideout() screen {
|
|
return screen{
|
|
name: names.ScreenRooftopHideout,
|
|
title: "NORMAN'S ROOFTOP HIDEOUT",
|
|
background: names.BgRooftopHideout,
|
|
exits: []exit{
|
|
{to: names.ScreenNormanApartment, label: "back down into the flat", side: sideNear},
|
|
{to: names.ScreenBBSTerminal, label: "the old terminal", side: sideRight},
|
|
},
|
|
}
|
|
}
|