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

17 lines
386 B
Go

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