aboutsummaryrefslogtreecommitdiff
path: root/internal/player/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/player/doc.go
parent4cc1ddcd185509080b4b3e15d1646567edd51c9d (diff)
downloadthehouseoficarus-43f21aabae8924f35c12c8485e690aeefe0089fb.tar.gz
feat: overhauled ansi color, added prompt options
Diffstat (limited to 'internal/player/doc.go')
-rw-r--r--internal/player/doc.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/internal/player/doc.go b/internal/player/doc.go
deleted file mode 100644
index a163bd7..0000000
--- a/internal/player/doc.go
+++ /dev/null
@@ -1,14 +0,0 @@
-// Package player defines character data, skills, equipment, inventory,
-// and account management for the game.
-//
-// The Player struct is the full character sheet: 23 skills with RSC-style
-// XP progression, 28-slot inventory, 11-slot equipment, combat level
-// calculation, and death mechanics.
-//
-// Accounts store authentication (salted sha256 passwords), character lists,
-// and command aliases. Validation functions enforce name and password rules.
-// The AccountStore manages persistence to YAML files under data/players/.
-//
-// Player options (15 settings) support bool, string, and int types with
-// defined defaults and valid values.
-package player