aboutsummaryrefslogtreecommitdiff
path: root/internal/player
diff options
context:
space:
mode:
authorhistoria <[not public]>2026-06-09 20:32:44 -0400
committerhistoria <[not public]>2026-06-09 20:32:44 -0400
commit6a0f3d7a252de4b1741cfe5e1c561412c602becc (patch)
tree368954bc9a52da6462823cc5efdb5a69d7ac1741 /internal/player
parent9a8848eaa84d46578595a7ca3efe66d1fe36d1e0 (diff)
downloadthehouseoficarus-6a0f3d7a252de4b1741cfe5e1c561412c602becc.tar.gz
feat: better login screen
Diffstat (limited to 'internal/player')
-rw-r--r--internal/player/player.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/internal/player/player.go b/internal/player/player.go
index 581fc04..ad56923 100644
--- a/internal/player/player.go
+++ b/internal/player/player.go
@@ -25,12 +25,13 @@ const (
Construction SkillName = "construction"
Scavenging SkillName = "scavenging"
Hunter SkillName = "hunter"
+ Slayer SkillName = "slayer"
)
var AllSkills = []SkillName{
Attack, Strength, Defense, Hitpoints, Ranged, Science, Technology,
Fishing, Cooking, Woodcutting, Mining, Smithing, Crafting, Fletching,
- Alchemy, Thieving, Agility, Construction, Scavenging, Hunter,
+ Alchemy, Thieving, Agility, Construction, Scavenging, Hunter, Slayer,
}
var SkillAbbr = map[SkillName]string{
@@ -54,6 +55,7 @@ var SkillAbbr = map[SkillName]string{
Construction: "con",
Scavenging: "scv",
Hunter: "hnt",
+ Slayer: "sly",
}
type AttackStyle string