mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-19 01:57:54 +01:00
Shuttle call/recall announcements are now more noticeable. Removed a few ways they could be spammed. Cats and Dogs can see in the dark. Recommitted some of the poop stuff by Doohl because, hell it's only one day and I don't hate fun. Revision: r3382 Author: elly1...@rocketmail.com Date: Mar 31, 2012
27 lines
748 B
Plaintext
27 lines
748 B
Plaintext
//Cat
|
|
/mob/living/simple_animal/cat
|
|
name = "cat"
|
|
desc = "Kitty!!"
|
|
icon = 'mob.dmi'
|
|
icon_state = "cat"
|
|
icon_living = "cat"
|
|
icon_dead = "cat_dead"
|
|
speak = list("Meow!","Esp!","Purr!","HSSSSS")
|
|
speak_emote = list("purrs", "meows")
|
|
emote_hear = list("meows","mews")
|
|
emote_see = list("shakes its head", "shivers")
|
|
speak_chance = 1
|
|
turns_per_move = 5
|
|
see_in_dark = 6
|
|
meat_type = /obj/item/weapon/reagent_containers/food/snacks/sliceable/meat
|
|
response_help = "pets the"
|
|
response_disarm = "gently pushes aside the"
|
|
response_harm = "kicks the"
|
|
|
|
//RUNTIME IS ALIVE! SQUEEEEEEEE~
|
|
/mob/living/simple_animal/cat/Runtime
|
|
name = "Runtime"
|
|
desc = ""
|
|
response_help = "pets"
|
|
response_disarm = "gently pushes aside"
|
|
response_harm = "kicks" |