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

20 lines
679 B
Go

package screen
import "git.teletypegames.org/games/realworld/internal/names"
// iceCreamShop stands where Paul's old bar used to be, and they insist there
// never was a bar. The BVK-registered terminal in the corner is the one the
// candy-crush guy will not give up (wiki: story, the Fagyizó beat).
//
// The search he eventually allows is what names the club — a lead, not a door:
// the way there is the trinket shop's address, so this screen has no exit of
// its own.
func iceCreamShop() screen {
return screen{
name: names.ScreenIceCreamShop,
title: "ICE CREAM SHOP — WHERE THE BAR WAS",
background: names.BgIceCreamShop,
onSelector: true,
}
}