/* Alien Effects! * Contains: * effect/alien * Resin * Weeds * Acid * Egg */ /* * effect/alien */ /obj/effect/alien name = "alien thing" desc = "theres something alien about this" icon = 'icons/mob/alien.dmi' /* * Resin */ /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 = 200 //var/mob/living/affecting = null /obj/effect/alien/resin/wall name = "resin wall" desc = "Purple slime solidified into a wall." icon_state = "resinwall" //same as resin, but consistency ho! /obj/effect/alien/resin/membrane name = "resin membrane" desc = "Purple slime just thin enough to let light pass through." icon_state = "resinmembrane" opacity = 0 health = 120 /obj/effect/alien/resin/New() ..() var/turf/T = get_turf(src) T.thermal_conductivity = WALL_HEAT_TRANSFER_COEFFICIENT /obj/effect/alien/resin/Del() var/turf/T = get_turf(src) T.thermal_conductivity = initial(T.thermal_conductivity) ..() /obj/effect/alien/resin/proc/healthcheck() if(health <=0) density = 0 del(src) return /obj/effect/alien/resin/bullet_act(var/obj/item/projectile/Proj) health -= Proj.damage ..() healthcheck() return /obj/effect/alien/resin/ex_act(severity) switch(severity) if(1.0) health-=50 if(2.0) health-=50 if(3.0) if (prob(50)) health-=50 else health-=25 healthcheck() return /obj/effect/alien/resin/blob_act() health-=50 healthcheck() return /obj/effect/alien/resin/meteorhit() health-=50 healthcheck() return /obj/effect/alien/resin/hitby(AM as mob|obj) ..() for(var/mob/O in viewers(src, null)) O.show_message("\red [src] was hit by [AM].", 1) var/tforce = 0 if(ismob(AM)) tforce = 10 else tforce = AM:throwforce playsound(loc, 'sound/effects/attackblob.ogg', 100, 1) health = max(0, health - tforce) healthcheck() ..() return /obj/effect/alien/resin/attack_hand() if (HULK in usr.mutations) usr << "\blue You easily destroy the [name]." for(var/mob/O in oviewers(src)) O.show_message("\red [usr] destroys the [name]!", 1) health = 0 else // Aliens can get straight through these. if(istype(usr,/mob/living/carbon)) var/mob/living/carbon/M = usr if(locate(/datum/organ/internal/xenos/hivenode) in M.internal_organs) for(var/mob/O in oviewers(src)) O.show_message("\red [usr] strokes the [name] and it melts away!", 1) health = 0 healthcheck() return usr << "\blue You claw at the [name]." for(var/mob/O in oviewers(src)) O.show_message("\red [usr] claws at the [name]!", 1) health -= rand(5,10) healthcheck() return /obj/effect/alien/resin/attackby(obj/item/weapon/W as obj, mob/user as mob) var/aforce = W.force health = max(0, health - aforce) playsound(loc, 'sound/effects/attackblob.ogg', 100, 1) healthcheck() ..() return /obj/effect/alien/resin/CanPass(atom/movable/mover, turf/target, height=0, air_group=0) if(air_group) return 0 if(istype(mover) && mover.checkpass(PASSGLASS)) return !opacity return !density /* * Weeds */ #define NODERANGE 3 /obj/effect/alien/weeds name = "weeds" desc = "Weird purple weeds." icon_state = "weeds" anchored = 1 density = 0 layer = 2 var/health = 15 var/obj/effect/alien/weeds/node/linked_node = null /obj/effect/alien/weeds/node icon_state = "weednode" name = "purple sac" desc = "Weird purple octopus-like thing." layer = 3 luminosity = NODERANGE var/node_range = NODERANGE /obj/effect/alien/weeds/node/New() ..(src.loc, src) /obj/effect/alien/weeds/New(pos, node) ..() if(istype(loc, /turf/space)) del(src) return linked_node = node if(icon_state == "weeds")icon_state = pick("weeds", "weeds1", "weeds2") spawn(rand(150, 200)) if(src) Life() return /obj/effect/alien/weeds/proc/Life() set background = 1 var/turf/U = get_turf(src) /* if (locate(/obj/movable, U)) U = locate(/obj/movable, U) if(U.density == 1) del(src) return Alien plants should do something if theres a lot of poison if(U.poison> 200000) health -= round(U.poison/200000) update() return */ if (istype(U, /turf/space)) del(src) return if(!linked_node || (get_dist(linked_node, src) > linked_node.node_range) ) return direction_loop: for(var/dirn in cardinal) var/turf/T = get_step(src, dirn) if (!istype(T) || T.density || locate(/obj/effect/alien/weeds) in T || istype(T.loc, /area/arrival) || istype(T, /turf/space)) continue // if (locate(/obj/movable, T)) // don't propogate into movables // continue for(var/obj/O in T) if(O.density) continue direction_loop new /obj/effect/alien/weeds(T, linked_node) /obj/effect/alien/weeds/ex_act(severity) switch(severity) if(1.0) del(src) if(2.0) if (prob(50)) del(src) if(3.0) if (prob(5)) del(src) return /obj/effect/alien/weeds/attackby(var/obj/item/weapon/W, var/mob/user) if(W.attack_verb.len) visible_message("\red \The [src] have been [pick(W.attack_verb)] with \the [W][(user ? " by [user]." : ".")]") else visible_message("\red \The [src] have been attacked with \the [W][(user ? " by [user]." : ".")]") var/damage = W.force / 4.0 if(istype(W, /obj/item/weapon/weldingtool)) var/obj/item/weapon/weldingtool/WT = W if(WT.remove_fuel(0, user)) damage = 15 playsound(loc, 'sound/items/Welder.ogg', 100, 1) health -= damage healthcheck() /obj/effect/alien/weeds/proc/healthcheck() if(health <= 0) del(src) /obj/effect/alien/weeds/fire_act(datum/gas_mixture/air, exposed_temperature, exposed_volume) if(exposed_temperature > 300) health -= 5 healthcheck() #undef NODERANGE /* * Acid */ /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/atom/target var/ticks = 0 var/target_strength = 0 /obj/effect/alien/acid/New(loc, target) ..(loc) src.target = target if(isturf(target)) // Turf take twice as long to take down. target_strength = 8 else target_strength = 4 tick() /obj/effect/alien/acid/proc/tick() if(!target) del(src) ticks += 1 if(ticks >= target_strength) for(var/mob/O in hearers(src, null)) O.show_message("\green [src.target] collapses under its own weight into a puddle of goop and undigested debris!", 1) if(istype(target, /turf/simulated/wall)) // I hate turf code. var/turf/simulated/wall/W = target W.dismantle_wall(1) else del(target) del(src) return switch(target_strength - ticks) if(6) visible_message("\green [src.target] is holding up against the acid!") if(4) visible_message("\green [src.target]\s structure is being melted by the acid!") if(2) visible_message("\green [src.target] is struggling to withstand the acid!") if(0 to 1) visible_message("\green [src.target] begins to crumble under the acid!") spawn(rand(150, 200)) tick() /* * Egg */ /var/const //for the status var BURST = 0 BURSTING = 1 GROWING = 2 GROWN = 3 MIN_GROWTH_TIME = 1800 //time it takes to grow a hugger MAX_GROWTH_TIME = 3000 /obj/effect/alien/egg desc = "It looks like a weird egg" name = "egg" icon_state = "egg_growing" density = 0 anchored = 1 var/health = 100 var/status = GROWING //can be GROWING, GROWN or BURST; all mutually exclusive /obj/effect/alien/egg/New() if(aliens_allowed) ..() spawn(rand(MIN_GROWTH_TIME,MAX_GROWTH_TIME)) Grow() else del(src) /obj/effect/alien/egg/attack_hand(user as mob) var/mob/living/carbon/M = user if(!istype(M) || !(locate(/datum/organ/internal/xenos/hivenode) in M.internal_organs)) return attack_hand(user) switch(status) if(BURST) user << "\red You clear the hatched egg." del(src) return if(GROWING) user << "\red The child is not developed yet." return if(GROWN) user << "\red You retrieve the child." Burst(0) return /obj/effect/alien/egg/proc/GetFacehugger() return locate(/obj/item/clothing/mask/facehugger) in contents /obj/effect/alien/egg/proc/Grow() icon_state = "egg" status = GROWN new /obj/item/clothing/mask/facehugger(src) return /obj/effect/alien/egg/proc/Burst(var/kill = 1) //drops and kills the hugger if any is remaining if(status == GROWN || status == GROWING) var/obj/item/clothing/mask/facehugger/child = GetFacehugger() icon_state = "egg_hatched" flick("egg_opening", src) status = BURSTING spawn(15) status = BURST child.loc = get_turf(src) if(kill && istype(child)) child.Die() else for(var/mob/M in range(1,src)) if(CanHug(M)) child.Attach(M) break /obj/effect/alien/egg/bullet_act(var/obj/item/projectile/Proj) health -= Proj.damage ..() healthcheck() return /obj/effect/alien/egg/attackby(var/obj/item/weapon/W, var/mob/user) if(health <= 0) return if(W.attack_verb.len) src.visible_message("\red \The [src] has been [pick(W.attack_verb)] with \the [W][(user ? " by [user]." : ".")]") else src.visible_message("\red \The [src] has been attacked with \the [W][(user ? " by [user]." : ".")]") var/damage = W.force / 4.0 if(istype(W, /obj/item/weapon/weldingtool)) var/obj/item/weapon/weldingtool/WT = W if(WT.remove_fuel(0, user)) damage = 15 playsound(src.loc, 'sound/items/Welder.ogg', 100, 1) src.health -= damage src.healthcheck() /obj/effect/alien/egg/proc/healthcheck() if(health <= 0) Burst() /obj/effect/alien/egg/fire_act(datum/gas_mixture/air, exposed_temperature, exposed_volume) if(exposed_temperature > 500) health -= 5 healthcheck() /obj/effect/alien/egg/HasProximity(atom/movable/AM as mob|obj) if(status == GROWN) if(!CanHug(AM)) return var/mob/living/carbon/C = AM if(C.stat == CONSCIOUS && C.status_flags & XENO_HOST) return Burst(0)