Files
realworld/inc/screen.trinket_shop.go
T
2026-08-29 23:27:15 +02:00

19 lines
496 B
Go

package inc
func screenTrinketShop() screen {
return screen{
name: ScreenTrinketShop,
title: "CHINATOWN — TRINKET SHOP",
background: BgTrinketShop,
onSelector: true,
exits: []exit{
{to: ScreenSmallRestaurant, label: "the eating place next door", side: sideRight},
{
to: ScreenSecretClub, label: "the way in at the back", side: sideBack,
needs: FlagClubEntry,
blocked: "Just a shop, as far as the man behind the counter is concerned.",
},
},
}
}