aboutsummaryrefslogtreecommitdiff
path: root/internal/game/action_state.go
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-21 22:19:17 -0400
committerhistoria <[not public]>2026-06-21 22:19:17 -0400
commita3ae1e6aad696f584d138d9363c05dedff136a65 (patch)
tree81e615f7227bc9d1ec79ceefc7311ecde917b074 /internal/game/action_state.go
parent84072ffe6365ad57c4976e9272762aa6db41de7e (diff)
downloadthehouseoficarus-a3ae1e6aad696f584d138d9363c05dedff136a65.tar.gz
feat: safespot system implemented
Diffstat (limited to 'internal/game/action_state.go')
-rw-r--r--internal/game/action_state.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/internal/game/action_state.go b/internal/game/action_state.go
index 0ba3767..ffce545 100644
--- a/internal/game/action_state.go
+++ b/internal/game/action_state.go
@@ -29,6 +29,7 @@ const (
ActionCuring ActionType = "curing"
ActionTraversing ActionType = "traversing"
ActionHacking ActionType = "hacking"
+ ActionHiding ActionType = "hiding"
)
type ActionState struct {
@@ -98,6 +99,8 @@ func (a *ActionState) Description() string {
return a.Verb + " across " + a.TargetName
case ActionHacking:
return "jacked into a " + a.TargetName
+ case ActionHiding:
+ return "positioning behind a " + a.TargetName
}
return ""
}