Advertisement
Guest User

Shitty Cart

a guest
Jun 7th, 2014
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. /obj/structure/stool/bed/chair/janicart/TA
  2. name = "ToxiKart"
  3. icon = 'icons/obj/vehicles.dmi'
  4. icon_state = "ta_cart"
  5. anchored = 1
  6. density = 1
  7. flags = OPENCONTAINER
  8. callme = "ToxiKart" //how do people refer to it?
  9. needkey = 0
  10.  
  11. /obj/structure/stool/bed/chair/janicart/TA/Bump(var/atom/obs)
  12. var/mob/M = obs
  13. if(ismob(M))
  14. if(istype(M,/mob/living/silicon/robot))
  15. src.visible_message("\red [src] bumps into [M]!")
  16. else
  17. src.visible_message("\red [src] knocks over [M]!")
  18. M.stop_pulling()
  19. M.Stun(1)
  20. M.Weaken(1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement