mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-20 12:35:33 +01:00
Eyeball migration
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
|
||||
|
||||
/mob/living/simple_animal/hostile/carp/eyeball
|
||||
name = "eyeball"
|
||||
desc = "An odd looking creature, it won't stop staring..."
|
||||
icon_state = "eyeball"
|
||||
icon_living = "eyeball"
|
||||
icon_dead = ""
|
||||
icon_gib = ""
|
||||
meat_type = null
|
||||
meat_amount = 0
|
||||
response_help = "pets"
|
||||
response_disarm = "gently pushes aside"
|
||||
response_harm = "hits"
|
||||
maxHealth = 45
|
||||
health = 45
|
||||
|
||||
harm_intent_damage = 15
|
||||
melee_damage_lower = 20
|
||||
melee_damage_upper = 25
|
||||
attacktext = "blinks at"
|
||||
attack_sound = 'sound/weapons/pierce.ogg'
|
||||
|
||||
faction = list("spooky")
|
||||
|
||||
|
||||
/mob/living/simple_animal/hostile/carp/eyeball/FindTarget()
|
||||
. = ..()
|
||||
if(.)
|
||||
emote("me", 1, "glares at [.]")
|
||||
|
||||
/mob/living/simple_animal/hostile/carp/eyeball/Die()
|
||||
qdel(src)
|
||||
return
|
||||
Reference in New Issue
Block a user