aboutsummaryrefslogtreecommitdiff
path: root/internal/action/doc.go
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-16 01:59:27 -0400
committerhistoria <[not public]>2026-06-16 01:59:27 -0400
commit43f21aabae8924f35c12c8485e690aeefe0089fb (patch)
treeb5fbadb89df3cf4ffec86503bb8e2d7e52b27454 /internal/action/doc.go
parent4cc1ddcd185509080b4b3e15d1646567edd51c9d (diff)
downloadthehouseoficarus-43f21aabae8924f35c12c8485e690aeefe0089fb.tar.gz
feat: overhauled ansi color, added prompt options
Diffstat (limited to 'internal/action/doc.go')
-rw-r--r--internal/action/doc.go11
1 files changed, 0 insertions, 11 deletions
diff --git a/internal/action/doc.go b/internal/action/doc.go
deleted file mode 100644
index c1a898d..0000000
--- a/internal/action/doc.go
+++ /dev/null
@@ -1,11 +0,0 @@
-// Package action defines the behavior type system, action state tracking,
-// and drop table resolution for the game world.
-//
-// Behaviors are YAML-driven and come in four types: gather, talk, use, and toggle.
-// This package provides configuration structs for each type, the Action struct
-// that tracks per-player action state (type, target, tick countdown), and the
-// Store for loading behaviors and resolving weighted drop tables.
-//
-// The SuccessChance function implements the OSRS-style skill check formula.
-// Drop table resolution supports nested sub-tables via the ResolveDrop method.
-package action