aboutsummaryrefslogtreecommitdiff
path: root/internal/game/action_state.go
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-19 03:05:46 -0400
committerhistoria <[not public]>2026-06-19 03:05:46 -0400
commitfbd1c30d7b9777c9df6653f0c393afa7a7dfa519 (patch)
tree7d4dd5b1fb1a5f868a330caf009ac8dc4e583025 /internal/game/action_state.go
parentdea4a06764c507699cf9adcd1fd0a572d227aff0 (diff)
downloadthehouseoficarus-fbd1c30d7b9777c9df6653f0c393afa7a7dfa519.tar.gz
feat: science skill roughly 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 0dc3d32..596eb4e 100644
--- a/internal/game/action_state.go
+++ b/internal/game/action_state.go
@@ -25,6 +25,7 @@ const (
ActionCleaning ActionType = "cleaning"
ActionMixing ActionType = "mixing"
ActionIdentifying ActionType = "identifying"
+ ActionTriggering ActionType = "triggering"
)
type ActionState struct {
@@ -82,6 +83,8 @@ func (a *ActionState) Description() string {
return "mixing " + a.TargetName
case ActionIdentifying:
return "identifying scrap at " + a.TargetName
+ case ActionTriggering:
+ return "triggering " + a.TargetName
}
return ""
}