Files
CHOMPStation2/modular_chomp/code/game/objects/trash_eating.dm
CHOMPStation2StaffMirrorBot 02ca094417 [MIRROR] Trash Eater Signals (#12006)
Co-authored-by: Will <7099514+Willburd@users.noreply.github.com>
2025-11-21 09:46:53 +01:00

52 lines
1.9 KiB
Plaintext

/obj/item/starcaster_news/after_trash_eaten(mob/living/user)
if(!..(user))
return
to_chat(user, span_notice("You can taste the dry flavor of digital garbage, oh wait its just the news."))
/obj/item/newspaper/after_trash_eaten(mob/living/user)
if(!..(user))
return
to_chat(user, span_notice("You can taste the dry flavor of garbage, oh wait its just the news."))
/obj/item/cell/after_trash_eaten(mob/living/user)
if(!..(user))
return
visible_message(span_warning("[user] sates their electric appetite with a [src]!"))
to_chat(user, span_notice("You can taste the spicy flavor of electrolytes, yum."))
/obj/item/walkpod/after_trash_eaten(mob/living/user)
if(!..(user))
return
visible_message(span_warning("[user] sates their musical appetite with a [src]!"))
to_chat(user, span_notice("You can taste the jazzy flavor of music."))
/obj/item/mail/junkmail/after_trash_eaten(mob/living/user)
if(!..(user))
return
visible_message(span_warning("[user] devours the [src]!"))
to_chat(user, span_notice("You can taste the flavor of the galactic postal service."))
/obj/item/gun/energy/sizegun/after_trash_eaten(mob/living/user)
if(!..(user))
return
visible_message(span_warning("[user] devours the [src]!"))
to_chat(user, span_notice("You didn't read the warning label, did you?"))
/obj/item/slow_sizegun/after_trash_eaten(mob/living/user)
if(!..(user))
return
visible_message(span_warning("[user] devours the [src]!"))
to_chat(user, span_notice("You taste the flavor of sunday driver bluespace."))
/obj/item/laser_pointer/after_trash_eaten(mob/living/user)
if(!..(user))
return
visible_message(span_warning("[user] devours the [src]!"))
to_chat(user, span_notice("You taste the flavor of a laser."))
/obj/item/canvas/after_trash_eaten(mob/living/user)
if(!..(user))
return
visible_message(span_warning("[user] devours the [src]!"))
to_chat(user, span_notice("You taste the flavor of priceless artwork."))