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

17 lines
381 B
Go

package inc
import (
inkwell "git.teletypegames.org/engines/inkwell"
)
func itemMysteryTape() inkwell.Item {
return inkwell.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."),
),
}
}