Fox (improper addition)

This really needs to be cleaned up over the coming week, and the pet
class implemented. UNTIL THEN: the fox is a subclass of corgi. Yes. Code
courtesy of Paradise, as it stands.
This commit is contained in:
skull132
2015-06-28 18:07:51 +03:00
parent 576603f026
commit 3a0b174f6d
3 changed files with 26 additions and 0 deletions
+1
View File
@@ -1193,6 +1193,7 @@
#include "code\modules\mob\living\simple_animal\friendly\corgi.dm"
#include "code\modules\mob\living\simple_animal\friendly\crab.dm"
#include "code\modules\mob\living\simple_animal\friendly\farm_animals.dm"
#include "code\modules\mob\living\simple_animal\friendly\fox.dm"
#include "code\modules\mob\living\simple_animal\friendly\lizard.dm"
#include "code\modules\mob\living\simple_animal\friendly\mouse.dm"
#include "code\modules\mob\living\simple_animal\friendly\mushroom.dm"
@@ -0,0 +1,25 @@
//Foxxy
/mob/living/simple_animal/corgi/fox
name = "fox"
desc = "It's a fox. I wonder what it says?"
icon_state = "fox"
icon_living = "fox"
icon_dead = "fox_dead"
speak = list("Ack-Ack","Ack-Ack-Ack-Ackawoooo","Geckers","Awoo","Tchoff")
speak_emote = list("geckers", "barks")
emote_hear = list("howls","barks")
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/meat
meat_amount = 3
response_help = "pets"
response_disarm = "gently pushes aside"
response_harm = "kicks"
//Captain fox
/mob/living/simple_animal/corgi/fox/Chauncey
name = "Chauncey"
desc = "Chauncey, the Captain's trustworthy fox. I wonder what it says?"
Binary file not shown.

Before

Width:  |  Height:  |  Size: 251 KiB

After

Width:  |  Height:  |  Size: 254 KiB