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

18 lines
422 B
Go

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