21 lines
440 B
Go
21 lines
440 B
Go
package domain
|
|
|
|
import p "git.teletypegames.org/games/pncdsl"
|
|
|
|
func defineKey(g *p.Game) {
|
|
g.ItemManager.Register(p.Item{
|
|
Name: "key",
|
|
Sprite: "spr/key",
|
|
Description: "rozsdás kulcs",
|
|
OnUseWith: map[string]p.Action{
|
|
"cupboard": p.Seq(
|
|
p.Say("player", "Klikk."),
|
|
p.SetFlag(FlagCupboardOpen),
|
|
p.Give("beans"),
|
|
p.TakeAway("key"),
|
|
p.Say("player", "Bab van benne. Pont, ami kell."),
|
|
),
|
|
},
|
|
})
|
|
}
|