mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-13 11:12:14 +00:00
## About The Pull Request Separates all the quirts out of the positive, neutral and negative files into their own files. The smoker and alcoholic quirks are left with junkie as they are subtypes of it. ## Why It's Good For The Game These three code files were chonkers at 400, 483 and 1564 lines. They were run on files of types only connected by all being quirks, and made it hard to navigate these files without the user's eye sliding from one quirk to the next. Breaking them down makes it easy to look at the code for a specific quirk indepentently, and also allows looking between multiple quirks without having to scroll around the same file. ## Changelog No player facing changes
11 lines
452 B
Plaintext
11 lines
452 B
Plaintext
/datum/quirk/bighands
|
|
name = "Big Hands"
|
|
desc = "You have big hands, it sure does make it hard to use a lot of things."
|
|
icon = FA_ICON_HAND_DOTS
|
|
value = -6
|
|
mob_trait = TRAIT_CHUNKYFINGERS
|
|
gain_text = span_danger("Your hands are huge! You can't use small things anymore!")
|
|
lose_text = span_notice("Your hands are back to normal.")
|
|
medical_record_text = "Patient has unusually large hands. Made me question my masculinity..."
|
|
hardcore_value = 5
|