Adds two away missions ghost roles (#7450)

This commit is contained in:
Alberyk
2019-11-21 16:55:59 -03:00
committed by Werner
parent a60804c24f
commit beb35d6fd3
29 changed files with 571 additions and 342 deletions

View File

@@ -347,4 +347,19 @@
/obj/item/projectile/bullet/cannonball/explosive/on_impact(var/atom/A)
explosion(A, -1, 1, 2)
..()
/obj/item/projectile/bullet/nuke
name = "miniaturized nuclear warhead"
icon_state = "nuke"
damage = 25
/obj/item/projectile/bullet/nuke/on_impact(var/atom/A)
for(var/mob/living/carbon/human/mob in human_mob_list)
var/turf/T = get_turf(mob)
if(T && (loc.z == T.z))
if(ishuman(mob))
mob.apply_effect(450, IRRADIATE)
new /obj/effect/temp_visual/nuke(A.loc)
explosion(A,2,5,9)
..()