Files
VOREStation/code/game/objects/alien/defines.dm
noisomehollow@lycos.com 9995e7fad2 Alien eggs are can now be dragged.
Hunters begin with 100 plasma instead of 50.

git-svn-id: http://tgstation13.googlecode.com/svn/trunk@850 316c924e-a436-60f5-8080-3fe189b3f50e
2011-01-13 23:31:42 +00:00

63 lines
1.1 KiB
Plaintext

/obj/alien
name = "alien thing"
desc = "theres something alien about this"
icon = 'alien.dmi'
unacidable = 1 //Aliens won't ment their own.
/obj/alien/egg
desc = "It looks like a weird egg"
name = "egg"
icon_state = "egg"
density = 0
anchored = 0
var/health = 100
/obj/alien/head
name = "severed head"
desc = "a severed head..."
icon_state = "weeds"
density = 0
anchored = 0
/obj/alien/skin_suit
name = "skin"
desc = "a persons skin, disgusting"
icon_state = "weeds"
density = 0
anchored = 0
/obj/alien/resin
name = "resin"
desc = "Looks like some kind of slimy growth."
icon_state = "resin"
density = 1
opacity = 1
anchored = 1
//Alien can now normally destroy resin walls so they are no longer targetable with acid.
var/health = 50
/obj/alien/weeds
name = "weeds"
desc = "Weird purple weeds."
icon_state = "weeds"
anchored = 1
density = 0
var/health = 50
/obj/alien/acid
name = "acid"
desc = "Burbling corrossive stuff. I wouldn't want to touch it."
icon_state = "acid"
density = 0
opacity = 0
anchored = 1
var/obj/target
var/ticks = 0