Files
realworld/inc/item/item.noodle_letter.go
T
mr.zero c5c0c02c03
ci/woodpecker/push/ebitengine Pipeline was successful
dirs
2026-08-30 23:21:06 +02:00

18 lines
426 B
Go

package item
import (
inkwell "git.teletypegames.org/engines/inkwell"
"git.teletypegames.org/games/realworld/inc"
)
func init() {
Manager.Register(Item{
Name: inc.ItemNoodleLetter,
Description: "Noodle's letter",
OnUseSelf: inkwell.Seq(
inkwell.Say(inc.Paul, "“Come out, Paul. Not a phone conversation.” That's all it says."),
inkwell.Say(inc.Dex, "And now you're here. And he isn't."),
),
})
}