mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-23 12:07:27 +01:00
18 lines
613 B
Plaintext
18 lines
613 B
Plaintext
/mob/living/simple_animal/pet
|
|
icon = 'icons/mob/pets.dmi'
|
|
mob_size = MOB_SIZE_SMALL
|
|
mob_biotypes = MOB_ORGANIC | MOB_BEAST
|
|
blood_volume = BLOOD_VOLUME_NORMAL
|
|
can_collar = TRUE
|
|
speed = 0 // same speed as a person.
|
|
hud_type = /datum/hud/corgi
|
|
|
|
/mob/living/simple_animal/pet/attackby(obj/item/O, mob/user, params)
|
|
if(!istype(O, /obj/item/newspaper))
|
|
return ..()
|
|
var/obj/item/newspaper/paper = O
|
|
if(stat != CONSCIOUS || !paper.rolled)
|
|
return
|
|
user.visible_message("<span class='notice'>[user] baps [name] on the nose with the rolled up [O].</span>")
|
|
INVOKE_ASYNC(src, PROC_REF(spin), 7 DECISECONDS, 1)
|