Files
Bubberstation/code/datums/quirks/positive_quirks/clown_enjoyer.dm
SkyratBot c83ac65e63 [MIRROR] Breaks up the three quirk code files into individual quirks [MDB IGNORE] (#23781)
* Breaks up the three quirk code files into individual quirks

* Removals + skyrat edits

* Delete positive_quirks.dm

* Update tgstation.dme

---------

Co-authored-by: Thunder12345 <Thunder12345@users.noreply.github.com>
Co-authored-by: Pinta <68373373+softcerv@users.noreply.github.com>
Co-authored-by: Giz <13398309+vinylspiders@users.noreply.github.com>
2023-09-18 17:19:28 -04:00

32 lines
1.3 KiB
Plaintext

/datum/quirk/item_quirk/clown_enjoyer
name = "Clown Enjoyer"
desc = "You enjoy clown antics and get a mood boost from wearing your clown pin."
icon = FA_ICON_MAP_PIN
value = 2
mob_trait = TRAIT_CLOWN_ENJOYER
gain_text = span_notice("You are a big enjoyer of clowns.")
lose_text = span_danger("The clown doesn't seem so great.")
medical_record_text = "Patient reports being a big enjoyer of clowns."
mail_goodies = list(
/obj/item/bikehorn,
/obj/item/stamp/clown,
/obj/item/megaphone/clown,
/obj/item/clothing/shoes/clown_shoes,
/obj/item/bedsheet/clown,
/obj/item/clothing/mask/gas/clown_hat,
/obj/item/storage/backpack/clown,
/obj/item/storage/backpack/duffelbag/clown,
/obj/item/toy/crayon/rainbow,
/obj/item/toy/figure/clown,
/obj/item/tank/internals/emergency_oxygen/engi/clown/n2o,
/obj/item/tank/internals/emergency_oxygen/engi/clown/bz,
/obj/item/tank/internals/emergency_oxygen/engi/clown/helium,
)
/datum/quirk/item_quirk/clown_enjoyer/add_unique(client/client_source)
give_item_to_holder(/obj/item/clothing/accessory/clown_enjoyer_pin, list(LOCATION_BACKPACK = ITEM_SLOT_BACKPACK, LOCATION_HANDS = ITEM_SLOT_HANDS))
/datum/quirk/item_quirk/clown_enjoyer/add(client/client_source)
var/datum/atom_hud/fan = GLOB.huds[DATA_HUD_FAN]
fan.show_to(quirk_holder)