mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-24 02:16:50 +01:00
95 lines
2.6 KiB
Plaintext
95 lines
2.6 KiB
Plaintext
/* Gifts and wrapping paper
|
|
* Contains:
|
|
* Gifts
|
|
* Wrapping Paper
|
|
*/
|
|
|
|
/*
|
|
* Gifts
|
|
*/
|
|
|
|
GLOBAL_LIST_EMPTY(possible_gifts)
|
|
|
|
/obj/item/a_gift
|
|
name = "gift"
|
|
desc = "PRESENTS!!!! eek!"
|
|
icon = 'icons/obj/storage.dmi'
|
|
icon_state = "giftdeliverypackage3"
|
|
item_state = "gift"
|
|
//resistance_flags = FLAMMABLE
|
|
|
|
var/obj/item/contains_type
|
|
|
|
/obj/item/a_gift/Initialize(mapload)
|
|
. = ..()
|
|
pixel_x = rand(-10,10)
|
|
pixel_y = rand(-10,10)
|
|
icon_state = "giftdeliverypackage[rand(1,5)]"
|
|
|
|
contains_type = get_gift_type()
|
|
|
|
/obj/item/a_gift/examine(mob/M)
|
|
. = ..()
|
|
. += SPAN_NOTICE("It contains \a [initial(contains_type.name)].")
|
|
|
|
/obj/item/a_gift/attack_self(mob/user, datum/event_args/actor/actor)
|
|
. = ..()
|
|
if(.)
|
|
return
|
|
|
|
qdel(src)
|
|
|
|
var/obj/item/I = new contains_type(get_turf(user))
|
|
if (!QDELETED(I)) //might contain something like metal rods that might merge with a stack on the ground
|
|
user.visible_message(SPAN_NOTICE("[user] unwraps \the [src], finding \a [I] inside!"))
|
|
I.investigate_log("([I.type]) was found in a present by [key_name(user)].", INVESTIGATE_PRESENTS)
|
|
user.put_in_hands(I)
|
|
I.add_fingerprint(user)
|
|
else
|
|
user.visible_message(SPAN_DANGER("Oh no! The present that [user] opened had nothing inside it!"))
|
|
|
|
/obj/item/a_gift/proc/get_gift_type()
|
|
var/gift_type_list = list(
|
|
/obj/item/storage/wallet,
|
|
/obj/item/storage/photo_album,
|
|
/obj/item/storage/box/snappops,
|
|
/obj/item/storage/backpack/holding,
|
|
/obj/item/storage/belt/champion,
|
|
/obj/item/soap/deluxe,
|
|
/obj/item/pickaxe/diamond,
|
|
/obj/item/pen/invisible,
|
|
/obj/item/lipstick/random,
|
|
/obj/item/grenade/simple/smoke,
|
|
/obj/item/book/manual/chef_recipes,
|
|
/obj/item/bikehorn,
|
|
/obj/item/paicard,
|
|
/obj/item/instrument/violin,
|
|
/obj/item/instrument/guitar,
|
|
/obj/item/storage/belt/utility/full,
|
|
/obj/item/clothing/suit/snowman,
|
|
/obj/item/clothing/head/snowman
|
|
)
|
|
|
|
gift_type_list += subtypesof(/obj/item/clothing/head/collectable)
|
|
gift_type_list += subtypesof(/obj/item/toy) - (((typesof(/obj/item/deck/cards) - /obj/item/deck/holder) + /obj/item/toy/figure + /obj/item/toy/ammo)) //All toys, except for abstract types and syndicate cards.
|
|
|
|
var/gift_type = pick(gift_type_list)
|
|
|
|
return gift_type
|
|
|
|
/obj/item/a_gift/anything
|
|
name = "christmas gift"
|
|
desc = "It could be anything!"
|
|
|
|
/obj/item/a_gift/anything/get_gift_type()
|
|
if(!GLOB.possible_gifts.len)
|
|
var/list/gift_types_list = subtypesof(/obj/item)
|
|
for(var/V in gift_types_list)
|
|
var/obj/item/I = V
|
|
if((!initial(I.icon_state)) || (!initial(I.item_state)) || (initial(I.item_flags) & ITEM_ABSTRACT))
|
|
gift_types_list -= V
|
|
GLOB.possible_gifts = gift_types_list
|
|
var/gift_type = pick(GLOB.possible_gifts)
|
|
|
|
return gift_type
|