Merge pull request #1193 from Fox-McCloud/mobs-pets-stuffs

Simple Animal Refactor+Update+Fixes and Pet Collars
This commit is contained in:
ZomgPonies
2015-05-28 22:45:03 -04:00
58 changed files with 619 additions and 361 deletions
+2 -2
View File
@@ -301,12 +301,12 @@
attackby(obj/item/weapon/W as obj, mob/user as mob, params)
if(istype(W, /obj/item/weapon/crowbar))
var/mob/living/simple_animal/cat/Cat1 = new(loc)
var/mob/living/simple_animal/pet/cat/Cat1 = new(loc)
Cat1.apply_damage(250)//,TOX)
Cat1.name = "Schrodinger's Cat"
Cat1.desc = "It seems it's been dead for a while."
var/mob/living/simple_animal/cat/Cat2 = new(loc)
var/mob/living/simple_animal/pet/cat/Cat2 = new(loc)
Cat2.name = "Schrodinger's Cat"
Cat2.desc = "It's was alive the whole time!"
sleep(2)
+1 -1
View File
@@ -389,7 +389,7 @@
/obj/item/weapon/grenade/clusterbuster/fluffy
name = "Fluffy Love Bomb"
desc = "Exactly as snuggly as it sounds."
payload = /mob/living/simple_animal/corgi/puppy
payload = /mob/living/simple_animal/pet/corgi/puppy
/obj/item/weapon/grenade/clusterbuster/prime()
var/numspawned = rand(4,8)