Skip to content

Commit

Permalink
Renames the skill ranks on Shaded Hills.
Browse files Browse the repository at this point in the history
  • Loading branch information
MistakeNot4892 committed Jul 16, 2024
1 parent c1e1120 commit 5756215
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions maps/shaded_hills/shaded_hills_skills.dm
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/decl/hierarchy/skill/Initialize()
. = ..()
// Rename the default skill levels.
var/static/list/replacement_levels = list(
"Unskilled",
"Beginner",
"Apprentice",
"Journeyman",
"Master"
)
var/i = 0
for(var/level in levels)
i++
var/old_string = levels[level]
levels -= level
levels[replacement_levels[i]] = old_string

/decl/hierarchy/skill/crafting
name = "Crafting"
difficulty = SKILL_EASY
Expand Down

0 comments on commit 5756215

Please sign in to comment.