Skip to content

Commit

Permalink
Merge pull request #315 from carpotoxin/waddle-quirk
Browse files Browse the repository at this point in the history
Quirk that makes you do the waddle animation
  • Loading branch information
Paxilmaniac authored Jan 2, 2025
2 parents b4f5b72 + df312e8 commit e2da77a
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
13 changes: 13 additions & 0 deletions modular_doppler/modular_quirks/bouncy/bouncy.dm
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/datum/quirk/bouncy
name = "Bouncy!"
desc = "You have a waddle in your step!"
gain_text = span_notice("You're hopping around!")
lose_text = span_notice("You've lost the pep in your step...")
medical_record_text = "Patient walks irregularly."
value = 0
icon = FA_ICON_TURN_UP

/datum/quirk/bouncy/add()
. = ..()
var/mob/living/carbon/human/user = quirk_holder
user.AddElementTrait(TRAIT_WADDLING, QUIRK_TRAIT, /datum/element/waddling)
1 change: 1 addition & 0 deletions tgstation.dme
Original file line number Diff line number Diff line change
Expand Up @@ -7089,6 +7089,7 @@
#include "modular_doppler\modular_mood\code\mood_events\race_drink.dm"
#include "modular_doppler\modular_quirks\atypical_tastes\atypical_tastes.dm"
#include "modular_doppler\modular_quirks\atypical_tastes\code\preferences.dm"
#include "modular_doppler\modular_quirks\bouncy\bouncy.dm"
#include "modular_doppler\modular_quirks\breather\accessories.dm"
#include "modular_doppler\modular_quirks\breather\breather_quirk.dm"
#include "modular_doppler\modular_quirks\breather\nitrogen_breather\nitrogen_breather.dm"
Expand Down

0 comments on commit e2da77a

Please sign in to comment.