diff options
| author | historia <[not public]> | 2026-06-09 20:32:44 -0400 |
|---|---|---|
| committer | historia <[not public]> | 2026-06-09 20:32:44 -0400 |
| commit | 6a0f3d7a252de4b1741cfe5e1c561412c602becc (patch) | |
| tree | 368954bc9a52da6462823cc5efdb5a69d7ac1741 /internal/player/player.go | |
| parent | 9a8848eaa84d46578595a7ca3efe66d1fe36d1e0 (diff) | |
| download | thehouseoficarus-6a0f3d7a252de4b1741cfe5e1c561412c602becc.tar.gz | |
feat: better login screen
Diffstat (limited to 'internal/player/player.go')
| -rw-r--r-- | internal/player/player.go | 4 |
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 |
