aboutsummaryrefslogtreecommitdiff
path: root/internal/player
diff options
context:
space:
mode:
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