Merge pull request #142 from Mark9013100/fcardbox

Adds a box for fingerprint cards
This commit is contained in:
Neerti
2015-08-09 12:01:14 -04:00
2 changed files with 13 additions and 0 deletions
@@ -15,6 +15,7 @@
* Handcuff, mousetrap, and pillbottle boxes,
* Snap-pops and matchboxes,
* Replacement light boxes.
* Fingerprint card box.
*
* For syndicate call-ins see uplink_kits.dm
*/
@@ -654,3 +655,14 @@
can_hold = list(/obj/item/organ, /obj/item/weapon/reagent_containers/food, /obj/item/weapon/reagent_containers/glass)
max_storage_space = 21
use_to_pickup = 1 // for picking up broken bulbs, not that most people will try
/obj/item/weapon/storage/box/fcard //Serves as a replacement to the fcard holder.
name = "finger-print card box"
desc = "Holds fingerprint cards."
icon = 'icons/obj/storage.dmi'
icon_state = "box"
item_state = "syringe_kit"
storage_slots=21
max_w_class = 1
can_hold = list(/obj/item/weapon/f_card)
use_to_pickup = 1 // for picking up broken bulbs, not that most people will try
@@ -265,6 +265,7 @@
new /obj/item/taperoll/police(src)
new /obj/item/weapon/gun/projectile/colt/detective(src)
new /obj/item/clothing/accessory/holster/armpit(src)
new /obj/item/weapon/storage/box/fcard(src)
return
/obj/structure/closet/secure_closet/detective/update_icon()