Business card buffs (#12810)

* bizniz cards

* Buffs business cards.

* Update wezzy_businesscardbuffs.yml

* oops

* Update code/game/objects/items/weapons/storage/business_card.dm

Co-authored-by: Casper3667 <8396443+Casper3667@users.noreply.github.com>

* Update code/game/objects/items/weapons/storage/business_card.dm

Co-authored-by: Casper3667 <8396443+Casper3667@users.noreply.github.com>

* Update code/game/objects/items/weapons/storage/business_card.dm

Co-authored-by: Casper3667 <8396443+Casper3667@users.noreply.github.com>

* Update code/game/objects/items/weapons/storage/business_card.dm

Co-authored-by: Casper3667 <8396443+Casper3667@users.noreply.github.com>

* fix

* Update wezzy_businesscardbuffs.yml

* makes business cards unfoildable and glass immune to fire

* KOLORS

* spy fortress 2

* dent

* A

* undoes purse change

Co-authored-by: Casper3667 <8396443+Casper3667@users.noreply.github.com>
Co-authored-by: TGW <mc-casper@hotmail.dk>
Co-authored-by: Werner <1331699+Arrow768@users.noreply.github.com>
This commit is contained in:
Wowzewow (Wezzy)
2021-12-19 22:22:28 +01:00
committed by GitHub
co-authored by Casper3667 TGW Werner
parent 8d5fb5e08e
commit 0549da254f
9 changed files with 163 additions and 40 deletions
@@ -107,27 +107,42 @@
/datum/gear/utility/business_card_holder
display_name = "business card holder"
description = "Comes in different materials."
path = /obj/item/storage/business_card_holder
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION | GEAR_HAS_COLOR_SELECTION
flags = GEAR_HAS_NAME_SELECTION | GEAR_HAS_DESC_SELECTION
/datum/gear/utility/business_card_holder/New()
..()
var/list/holders = list()
holders["business card holder, metal"] = /obj/item/storage/business_card_holder
holders["business card holder, wood"] = /obj/item/storage/business_card_holder/wood
holders["business card holder, leather"] = /obj/item/storage/business_card_holder/leather
holders["business card holder, plastic"] = /obj/item/storage/business_card_holder/plastic
gear_tweaks += new /datum/gear_tweak/path(holders)
/datum/gear/utility/business_card
display_name = "business card"
description = "A selection of business cards." // I'm not smart enough to make it spawn inside the holders and carry over the text so we'll have to live with this
path = /obj/item/paper/business_card
flags = 0
flags = GEAR_HAS_COLOR_SELECTION
/datum/gear/utility/business_card/New()
..()
var/list/cards = list()
cards["business card, divided"] = /obj/item/paper/business_card
cards["business card, plain"] = /obj/item/paper/business_card/alt
cards["business card, rounded"] = /obj/item/paper/business_card/rounded
cards["business card, glass"] = /obj/item/paper/business_card/glass
cards["paper business card, divided"] = /obj/item/paper/business_card
cards["paper business card, plain"] = /obj/item/paper/business_card/alt
cards["paper business card, rounded"] = /obj/item/paper/business_card/rounded
cards["glass business card"] = /obj/item/paper/business_card/glass
cards["glass business card, black flair"] = /obj/item/paper/business_card/glass/b
cards["glass business card, grey flair"] = /obj/item/paper/business_card/glass/g
cards["glass business card, silver flair"] = /obj/item/paper/business_card/glass/s
cards["glass business card, white flair"] = /obj/item/paper/business_card/glass/w
gear_tweaks += new /datum/gear_tweak/path(cards)
gear_tweaks += new /datum/gear_tweak/paper_data()
/datum/gear/utility/pills
display_name = "pill bottle selection"
description = "A selection of prescription pill. NOTICE: most of these are considered contraband if possessed without the relevant prescription noted in the medical records."
description = "A selection of prescription pills. NOTICE: most of these are considered contraband if possessed without the relevant prescription noted in the medical records."
path = /obj/item/reagent_containers/pill
/datum/gear/utility/pills/New()