mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
58 lines
1.9 KiB
Plaintext
58 lines
1.9 KiB
Plaintext
// This component is for forcing strange things into your pocket that fall out if you fall down
|
|
// Yes this exists purely for the spaghetti meme
|
|
|
|
/datum/component/spill
|
|
can_transfer = TRUE
|
|
var/preexisting_item_flags
|
|
|
|
var/list/droptext
|
|
var/list/dropsound
|
|
|
|
// droptext is an arglist for visible_message
|
|
// dropsound is a list of potential sounds that gets picked from
|
|
/datum/component/spill/Initialize(list/_droptext, list/_dropsound)
|
|
if(!isitem(parent))
|
|
return COMPONENT_INCOMPATIBLE
|
|
|
|
if(_droptext && !islist(_droptext))
|
|
_droptext = list(_droptext)
|
|
droptext = _droptext
|
|
|
|
if(_dropsound && !islist(_dropsound))
|
|
_dropsound = list(_dropsound)
|
|
dropsound = _dropsound
|
|
|
|
/datum/component/spill/PostTransfer()
|
|
if(!isitem(parent))
|
|
return COMPONENT_INCOMPATIBLE
|
|
|
|
/datum/component/spill/RegisterWithParent()
|
|
RegisterSignal(parent, COMSIG_ITEM_EQUIPPED, .proc/equip_react)
|
|
RegisterSignal(parent, COMSIG_ITEM_DROPPED, .proc/drop_react)
|
|
var/obj/item/master = parent
|
|
preexisting_item_flags = master.item_flags
|
|
master.item_flags |= ITEM_SLOT_POCKET
|
|
|
|
/datum/component/spill/UnregisterFromParent()
|
|
UnregisterSignal(parent, list(COMSIG_ITEM_EQUIPPED, COMSIG_ITEM_DROPPED))
|
|
var/obj/item/master = parent
|
|
if(!(preexisting_item_flags & ITEM_SLOT_POCKET))
|
|
master.item_flags &= ~ITEM_SLOT_POCKET
|
|
|
|
/datum/component/spill/proc/equip_react(obj/item/source, mob/equipper, slot)
|
|
if(slot == SLOT_L_STORE || slot == SLOT_R_STORE)
|
|
RegisterSignal(equipper, COMSIG_LIVING_STATUS_KNOCKDOWN, .proc/knockdown_react, TRUE)
|
|
else
|
|
UnregisterSignal(equipper, COMSIG_LIVING_STATUS_KNOCKDOWN)
|
|
|
|
/datum/component/spill/proc/drop_react(obj/item/source, mob/dropper)
|
|
UnregisterSignal(dropper, COMSIG_LIVING_STATUS_KNOCKDOWN)
|
|
|
|
/datum/component/spill/proc/knockdown_react(mob/living/fool)
|
|
var/obj/item/master = parent
|
|
fool.dropItemToGround(master)
|
|
if(droptext)
|
|
fool.visible_message(arglist(droptext))
|
|
if(dropsound)
|
|
playsound(master, pick(dropsound), 30)
|