Adds snowmen, walruses and seals to clown planet.

This commit is contained in:
ZomgPonies
2013-12-22 10:27:05 -05:00
parent 04a00e067f
commit 66e42a8e9b
5 changed files with 269 additions and 217 deletions
@@ -309,3 +309,44 @@ var/global/chicken_count = 0
attacktext = "kicks"
health = 50
/mob/living/simple_animal/seal
name = "seal"
desc = "A beautiful white seal."
icon_state = "seal"
icon_living = "seal"
icon_dead = "seal_dead"
speak = list("Urk?","urk","URK")
speak_emote = list("urks")
// emote_hear = list("brays")
emote_see = list("flops around")
speak_chance = 1
turns_per_move = 5
see_in_dark = 6
meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat
meat_amount = 6
response_help = "pets the"
response_disarm = "gently pushes aside the"
response_harm = "kicks the"
attacktext = "kicks"
health = 50
/mob/living/simple_animal/walrus
name = "walrus"
desc = "A big brown walrus."
icon_state = "walrus"
icon_living = "walrus"
icon_dead = "walrus_dead"
speak = list("Urk?","urk","URK")
speak_emote = list("urks")
// emote_hear = list("brays")
emote_see = list("flops around")
speak_chance = 1
turns_per_move = 5
see_in_dark = 6
meat_type = /obj/item/weapon/reagent_containers/food/snacks/meat
meat_amount = 6
response_help = "pets the"
response_disarm = "gently pushes aside the"
response_harm = "kicks the"
attacktext = "kicks"
health = 50