mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
[MIRROR] Trash Eater Signals (#12006)
Co-authored-by: Will <7099514+Willburd@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
6a7957f2c0
commit
02ca094417
@@ -1,33 +1,51 @@
|
||||
/obj/item/starcaster_news/after_trash_eaten(var/mob/living/user)
|
||||
/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(var/mob/living/user)
|
||||
/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(var/mob/living/user)
|
||||
/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(var/mob/living/user)
|
||||
/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(var/mob/living/user)
|
||||
/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(var/mob/living/user)
|
||||
/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(var/mob/living/user)
|
||||
/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(var/mob/living/user)
|
||||
/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(var/mob/living/user)
|
||||
/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."))
|
||||
|
||||
Reference in New Issue
Block a user