This repository has been archived by the owner on Sep 12, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from RemieRichards/2spooky3
Eyeball migration
- Loading branch information
Showing
5 changed files
with
52 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters