mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-13 11:12:14 +00:00
28 lines
1.1 KiB
Plaintext
28 lines
1.1 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, LOCATION_HANDS))
|