@@ -0,0 +1,16 @@
|
||||
package character
|
||||
|
||||
import (
|
||||
inkwell "git.teletypegames.org/engines/inkwell"
|
||||
"git.teletypegames.org/games/realworld/inc"
|
||||
"git.teletypegames.org/games/realworld/inc/theme"
|
||||
)
|
||||
|
||||
func init() {
|
||||
Manager.Register(Character{
|
||||
Name: inc.Dex,
|
||||
Label: "DEX",
|
||||
Voice: inkwell.VoiceLog,
|
||||
SpeechColor: theme.Amber,
|
||||
})
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
package character
|
||||
|
||||
import (
|
||||
inkwell "git.teletypegames.org/engines/inkwell"
|
||||
)
|
||||
|
||||
type Character = inkwell.Character
|
||||
|
||||
var Manager = inkwell.NewManager[Character]()
|
||||
@@ -0,0 +1,16 @@
|
||||
package character
|
||||
|
||||
import (
|
||||
inkwell "git.teletypegames.org/engines/inkwell"
|
||||
"git.teletypegames.org/games/realworld/inc"
|
||||
"git.teletypegames.org/games/realworld/inc/theme"
|
||||
)
|
||||
|
||||
func init() {
|
||||
Manager.Register(Character{
|
||||
Name: inc.TapeMystery,
|
||||
Label: "UNKNOWN TAPE",
|
||||
Voice: inkwell.VoiceLog,
|
||||
SpeechColor: theme.RGB(0xB9A98A),
|
||||
})
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
package character
|
||||
|
||||
import (
|
||||
inkwell "git.teletypegames.org/engines/inkwell"
|
||||
"git.teletypegames.org/games/realworld/inc"
|
||||
"git.teletypegames.org/games/realworld/inc/theme"
|
||||
)
|
||||
|
||||
func init() {
|
||||
Manager.Register(Character{
|
||||
Name: inc.Paul,
|
||||
Speed: 96,
|
||||
W: 28,
|
||||
H: 68,
|
||||
Start: inkwell.Point{
|
||||
X: 320,
|
||||
Y: 232,
|
||||
},
|
||||
SpeechColor: theme.Ink,
|
||||
})
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package character
|
||||
|
||||
import (
|
||||
inkwell "git.teletypegames.org/engines/inkwell"
|
||||
"git.teletypegames.org/games/realworld/inc"
|
||||
"git.teletypegames.org/games/realworld/inc/theme"
|
||||
)
|
||||
|
||||
func init() {
|
||||
Manager.Register(Character{
|
||||
Name: inc.TapeSupport,
|
||||
Label: "TECH SUPPORT",
|
||||
Voice: inkwell.VoiceLog,
|
||||
SpeechColor: theme.RGB(0xE8C86A),
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user