Files
realworld/inc/item.mystery_tape.go
T
2026-08-29 23:59:56 +02:00

17 lines
364 B
Go

package inc
import (
inkwell "git.teletypegames.org/engines/inkwell"
)
func init() {
ItemManager.Register(Item{
Name: ItemMysteryTape,
Description: "unmarked Personal Tape",
OnUseSelf: inkwell.Seq(
inkwell.Say(Paul, "Password-locked. Of course."),
TapeSay(Dex, "Put it in the second slot if you care that much. I did warn you."),
),
})
}