mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-21 07:03:05 +00:00
* 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>
32 lines
1.3 KiB
Plaintext
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)
|