initial commit

This commit is contained in:
timothyteakettle
2021-07-13 23:45:31 +01:00
parent 3fd9449e57
commit 39c09a60b8
5 changed files with 25 additions and 1 deletions
+11 -1
View File
@@ -82,4 +82,14 @@
grind_results = list(/datum/reagent/aluminium = 1) //from the mylar bag
/obj/item/trash/attack(mob/M, mob/living/user)
return
if((M == user || user.vore_flags & TRASH_FORCEFEED) && ishuman(user))
var/mob/living/carbon/human/H = user
if(HAS_TRAIT(H, TRAIT_TRASHCAN))
playsound(H.loc,'sound/items/eatfood.ogg', rand(10,50), 1)
if(H.vore_selected)
H.visible_message("<span class='notice'>[H] [H.vore_selected.vore_verb]s the [src] into their [H.vore_selected]</span>")
forceMove(H.vore_selected)
else
H.visible_message("<span class='notice'>[H] consumes the [src]")
qdel(src)