mirror of
https://github.com/CHOMPstation/CHOMPstation.git
synced 2026-07-20 19:42:34 +01:00
98 lines
3.1 KiB
Plaintext
98 lines
3.1 KiB
Plaintext
//Please make sure to:
|
|
//return FALSE: You are not going away, stop asking me to digest.
|
|
//return non-negative integer: Amount of nutrition/charge gained (scaled to nutrition, other end can multiply for charge scale).
|
|
|
|
// Ye default implementation.
|
|
/obj/item/proc/digest_act(var/atom/movable/item_storage = null)
|
|
for(var/obj/item/O in contents)
|
|
if(istype(O,/obj/item/weapon/storage/internal)) //Dump contents from dummy pockets.
|
|
for(var/obj/item/SO in O)
|
|
if(item_storage)
|
|
SO.forceMove(item_storage)
|
|
qdel(O)
|
|
else if(item_storage)
|
|
O.forceMove(item_storage)
|
|
|
|
qdel(src)
|
|
return w_class
|
|
|
|
/////////////
|
|
// Some indigestible stuff
|
|
/////////////
|
|
/obj/item/weapon/hand_tele/digest_act(...)
|
|
return FALSE
|
|
/obj/item/weapon/card/id/gold/captain/spare/digest_act(...)
|
|
return FALSE
|
|
/obj/item/device/aicard/digest_act(...)
|
|
return FALSE
|
|
/obj/item/device/paicard/digest_act(...)
|
|
return FALSE
|
|
/obj/item/weapon/gun/digest_act(...)
|
|
return FALSE
|
|
/obj/item/weapon/pinpointer/digest_act(...)
|
|
return FALSE
|
|
/obj/item/blueprints/digest_act(...)
|
|
return FALSE
|
|
/obj/item/weapon/disk/nuclear/digest_act(...)
|
|
return FALSE
|
|
/obj/item/device/perfect_tele_beacon/digest_act(...)
|
|
return FALSE //Sorta important to not digest your own beacons.
|
|
/obj/item/weapon/storage/glass_ornament/digest_act(...)
|
|
return FALSE
|
|
//TFF 23/4/19: Indigestible collar addition
|
|
/obj/item/clothing/accessory/collar/holo/indigestible/digest_act(...)
|
|
return FALSE
|
|
/////////////
|
|
// Some special treatment
|
|
/////////////
|
|
//PDAs need to lose their ID to not take it with them, so we can get a digested ID
|
|
/obj/item/device/pda/digest_act(var/atom/movable/item_storage = null)
|
|
if(id)
|
|
id = null
|
|
|
|
. = ..()
|
|
|
|
/obj/item/weapon/card/id/digest_act(var/atom/movable/item_storage = null)
|
|
desc = "A partially digested card that has seen better days. The damage appears to be only cosmetic."
|
|
icon = 'icons/obj/card_vr.dmi'
|
|
icon_state = "[initial(icon_state)]_digested"
|
|
// access = list() // No access /Removing this because everyone thinks it's dumb. -Erik //Fixing description -shark
|
|
return FALSE
|
|
|
|
/obj/item/weapon/reagent_containers/food/digest_act(var/atom/movable/item_storage = null)
|
|
if(isbelly(item_storage))
|
|
var/obj/belly/B = item_storage
|
|
if(ishuman(B.owner))
|
|
var/mob/living/carbon/human/H = B.owner
|
|
reagents.trans_to_holder(H.ingested, (reagents.total_volume * 0.3), 1, 0)
|
|
else if(isrobot(B.owner))
|
|
var/mob/living/silicon/robot/R = B.owner
|
|
R.cell.charge += 150
|
|
|
|
. = ..()
|
|
|
|
/obj/item/weapon/holder/digest_act(var/atom/movable/item_storage = null)
|
|
for(var/mob/living/M in contents)
|
|
if(item_storage)
|
|
M.forceMove(item_storage)
|
|
held_mob = null
|
|
|
|
. = ..()
|
|
|
|
/obj/item/organ/digest_act(var/atom/movable/item_storage = null)
|
|
if((. = ..()))
|
|
. += 70 //Organs give a little more
|
|
|
|
/obj/item/weapon/storage/digest_act(var/atom/movable/item_storage = null)
|
|
for(var/obj/item/I in contents)
|
|
I.screen_loc = null
|
|
|
|
. = ..()
|
|
|
|
/////////////
|
|
// Some more complicated stuff
|
|
/////////////
|
|
/obj/item/device/mmi/digital/posibrain/digest_act(var/atom/movable/item_storage = null)
|
|
//Replace this with a VORE setting so all types of posibrains can/can't be digested on a whim
|
|
return FALSE
|