Files
Polaris/code/modules/projectiles/projectile/special.dm
Ren Erthilo 4c7a2dc853 TG: Fixed the objectives not being assigned properly when the Summon Guns spell is
used.

Removed the wizard's Nar-Sie grav pull entirely to reduce lag/it is strong
enough as is.

Fixed the gyrojet projectile name

Removed the ion rifle from the armoury
Revision: r3272
Author: 	 kortgstation
2012-04-26 22:42:56 +01:00

40 lines
800 B
Plaintext

/obj/item/projectile/ion
name = "ion bolt"
icon_state = "ion"
damage = 0
damage_type = BURN
nodamage = 1
flag = "energy"
on_hit(var/atom/target, var/blocked = 0)
empulse(target, 1, 1)
return 1
/obj/item/projectile/bullet/gyro
name ="explosive bolt"
icon_state= "bolter"
damage = 50
flag = "bullet"
on_hit(var/atom/target, var/blocked = 0)
explosion(target, -1, 0, 2)
return 1
/obj/item/projectile/temp
name = "freeze beam"
icon_state = "ice_2"
damage = 0
damage_type = BURN
nodamage = 1
flag = "energy"
var/temperature = 300
on_hit(var/atom/target, var/blocked = 0)//These two could likely check temp protection on the mob
if(istype(target, /mob/living))
var/mob/M = target
M.bodytemperature = temperature
return 1