Files
Aurora.3/code/game/objects/alien/defines.dm

74 lines
1.4 KiB
Plaintext

/obj/effect/alien
name = "alien thing"
desc = "theres something alien about this"
icon = 'alien.dmi'
unacidable = 1 //Aliens won't ment their own.
/obj/effect/alien/egg
desc = "It looks like a weird egg"
name = "egg"
icon_state = "egg"
density = 0
anchored = 0
var/health = 100
/obj/effect/alien/head
name = "severed head"
desc = "a severed head..."
icon_state = "weeds"
density = 0
anchored = 0
/obj/effect/alien/resin
name = "resin"
desc = "Looks like some kind of slimy growth."
icon_state = "resin"
density = 1
opacity = 1
anchored = 1
var/health = 50
//var/mob/living/affecting = null
wall
name = "resin wall"
desc = "Purple slime solidified into a wall."
icon_state = "resinwall" //same as resin, but consistency ho!
membrane
name = "resin membrane"
desc = "Purple slime just thin enough to let light pass through."
icon_state = "resinmembrane"
opacity = 0
health = 20
/obj/effect/alien/weeds
name = "weeds"
desc = "Weird purple weeds."
icon_state = "weeds"
anchored = 1
density = 0
var/health = 50
bush
icon_state = "weedbush"
name = "purple sac"
desc = "Weird purple octopus-like thing."
density = 1
/obj/effect/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