mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-01-23 15:33:34 +00:00
Made a bunch of other things acid proof. Bullets, lasers, runes, etc. Aliens should no longer emote as male when they are gender neuter. Or maybe plural, who knows. Tweaked respawn character verb. Hopefully it'll work on the live server now. Minor Strike Team fix. git-svn-id: http://tgstation13.googlecode.com/svn/trunk@689 316c924e-a436-60f5-8080-3fe189b3f50e
65 lines
1.1 KiB
Plaintext
65 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 = 1
|
|
|
|
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
|
|
unacidable = 0 //So aliens can destroy their own walls if they need to.
|
|
|
|
var/health = 20
|
|
|
|
/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 |