@@ -0,0 +1,23 @@
|
||||
package item
|
||||
|
||||
import (
|
||||
inkwell "git.teletypegames.org/engines/inkwell"
|
||||
"git.teletypegames.org/games/realworld/inc"
|
||||
)
|
||||
|
||||
func init() {
|
||||
Manager.Register(Item{
|
||||
Name: inc.ItemBlackArmilla,
|
||||
Description: "black-market Armilla",
|
||||
OnUseSelf: inkwell.Seq(
|
||||
inkwell.Say(inc.Paul, "Jailbroken. Pushes ads, but it was cheap."),
|
||||
inkwell.Say(inc.Dex, "Two slots, and both of them lie about the temperature. Don't trade me in for it."),
|
||||
),
|
||||
OnUseWith: map[string]inkwell.Action{
|
||||
inc.ItemNoodleLetter: inkwell.Seq(
|
||||
inkwell.Say(inc.Paul, "A letter and a bracelet. Brilliant."),
|
||||
inkwell.Say(inc.Dex, "Nothing. Which is what I'd charge for it."),
|
||||
),
|
||||
},
|
||||
})
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package item
|
||||
|
||||
import (
|
||||
inkwell "git.teletypegames.org/engines/inkwell"
|
||||
)
|
||||
|
||||
type Item = inkwell.Item
|
||||
|
||||
var Manager = inkwell.NewManager[Item]()
|
||||
@@ -0,0 +1,17 @@
|
||||
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."),
|
||||
),
|
||||
})
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
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."),
|
||||
),
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user