mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-18 05:32:58 +00:00
* [READY] Fishing and aquarium expansion. * Update general.dm * Update production_skill.dm * Merge conflict * Merge branch 'upstream-merge-76531' of https://github.com/Skyrat-SS13/Skyrat-tg into upstream-merge-76531 --------- Co-authored-by: Ghom <42542238+Ghommie@users.noreply.github.com> Co-authored-by: Bloop <13398309+vinylspiders@users.noreply.github.com>
14 lines
952 B
Plaintext
14 lines
952 B
Plaintext
/datum/skill/gaming
|
|
name = "Gaming"
|
|
title = "Gamer"
|
|
desc = "My proficiency as a gamer. This helps me beat bosses with ease, powergame in Orion Trail, and makes me wanna slam some gamer fuel."
|
|
modifiers = list(SKILL_PROBS_MODIFIER = list(0, 5, 10, 15, 15, 20, 25),
|
|
SKILL_RANDS_MODIFIER = list(0, 1, 2, 3, 4, 5, 7))
|
|
skill_item_path = /obj/item/clothing/neck/cloak/skill_reward/gaming
|
|
|
|
/datum/skill/gaming/New()
|
|
. = ..()
|
|
levelUpMessages[1] = span_nicegreen("I'm starting to get a hang of the controls of these games...")
|
|
levelUpMessages[4] = span_nicegreen("I'm starting to pick up the meta of these arcade games. If I were to minmax the optimal strat and accentuate my playstyle around well-refined tech...")
|
|
levelUpMessages[6] = span_nicegreen("Through incredible determination and effort, I've reached the peak of my [name] abilities. I wonder how I can become any more powerful... Maybe gamer fuel would actually help me play better..?")
|