aboutsummaryrefslogtreecommitdiff
path: root/internal/game/action_state.go
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-19 18:20:26 -0400
committerhistoria <[not public]>2026-06-19 18:20:26 -0400
commit0ea4eec5dd2122c6704216971eb1249276297867 (patch)
tree430fbbef04e837820f1d031c190f52ecd6112e25 /internal/game/action_state.go
parent3a58125d14bb307f861b38c6c5b0a63babde7e08 (diff)
downloadthehouseoficarus-0ea4eec5dd2122c6704216971eb1249276297867.tar.gz
shop fixes, 'toggle' completely removed, movement speed increased
Diffstat (limited to 'internal/game/action_state.go')
-rw-r--r--internal/game/action_state.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/internal/game/action_state.go b/internal/game/action_state.go
index 55d3392..0ba3767 100644
--- a/internal/game/action_state.go
+++ b/internal/game/action_state.go
@@ -1,7 +1,5 @@
package game
-import "fmt"
-
type ActionType string
const (
@@ -11,7 +9,6 @@ const (
ActionMoving ActionType = "moving"
ActionUsing ActionType = "using"
ActionTalking ActionType = "talking"
- ActionToggling ActionType = "toggling"
ActionBurning ActionType = "burning"
ActionStoking ActionType = "stoking"
ActionPickingUp ActionType = "picking_up"
@@ -23,9 +20,7 @@ const (
ActionFletching ActionType = "fletching"
ActionEating ActionType = "eating"
ActionCleaning ActionType = "cleaning"
- ActionMixing ActionType = "mixing"
ActionIdentifying ActionType = "identifying"
- ActionTriggering ActionType = "triggering"
ActionStealing ActionType = "stealing"
ActionPlanting ActionType = "planting"
ActionHarvesting ActionType = "harvesting_crop"
@@ -63,8 +58,6 @@ func (a *ActionState) Description() string {
return "using a " + a.TargetName
case ActionTalking:
return "talking to " + a.TargetName
- case ActionToggling:
- return fmt.Sprintf("pulling a %s", a.TargetName)
case ActionBurning:
return "trying to start a fire"
case ActionStoking:
@@ -87,12 +80,8 @@ func (a *ActionState) Description() string {
return "eating " + a.TargetName
case ActionCleaning:
return "cleaning herbs"
- case ActionMixing:
- return "mixing " + a.TargetName
case ActionIdentifying:
return "identifying scrap at " + a.TargetName
- case ActionTriggering:
- return "triggering " + a.TargetName
case ActionStealing:
return "stealing from " + a.TargetName
case ActionPlanting: