From a3ae1e6aad696f584d138d9363c05dedff136a65 Mon Sep 17 00:00:00 2001 From: historia <[not public]> Date: Sun, 21 Jun 2026 22:19:17 -0400 Subject: feat: safespot system implemented --- internal/game/action_state.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'internal/game/action_state.go') 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 "" } -- cgit v1.2.3