Files
GS13NG/code/modules/projectiles/projectile/special/temperature.dm
CitadelStationBot c72201e605 [MIRROR] Splits projectiles into different files for readability (#5800)
* Splits projectiles into different files for readability

* Update tgstation.dme

* I love how the dme cleans itself up
2018-03-05 14:13:08 -06:00

20 lines
466 B
Plaintext

/obj/item/projectile/temp
name = "freeze beam"
icon_state = "ice_2"
damage = 0
damage_type = BURN
nodamage = FALSE
flag = "energy"
var/temperature = 100
/obj/item/projectile/temp/on_hit(atom/target, blocked = FALSE)//These two could likely check temp protection on the mob
..()
if(isliving(target))
var/mob/M = target
M.bodytemperature = temperature
return TRUE
/obj/item/projectile/temp/hot
name = "heat beam"
temperature = 400