Files
CHOMPStation2/code/modules/projectiles/guns/energy/temperature.dm
Rykka 22c27abf06 Finishes Serdy's Gun PR stuff
Uzi uses new sprite + tilts now.
Sec pistols use new sprite
Energy Gun uses new sprite.
C20r uses new sprite.
L6 SAW uses new sprite.
Ion Rifle uses new sprite.
Z8 Bulldog uses new sprite.
WT-550 uses new sprite.

Resolves https://github.com/CHOMPStation2/CHOMPStation2/issues/3068

Serdy will add Stetchkin, PPK + PPK Light later.
2022-04-07 03:53:43 -06:00

21 lines
799 B
Plaintext

/obj/item/weapon/gun/energy/temperature
name = "temperature gun"
icon = 'icons/obj/gun.dmi' // CHOMPEdit: Gun Sprites
icon_state = "freezegun"
desc = "A gun that can add or remove heat from entities it hits. In other words, it can fire 'cold', and 'hot' beams."
charge_cost = 240
origin_tech = list(TECH_COMBAT = 3, TECH_MATERIAL = 4, TECH_POWER = 3, TECH_MAGNET = 2)
slot_flags = SLOT_BELT|SLOT_BACK
projectile_type = /obj/item/projectile/temp
firemodes = list(
list(mode_name="endothermic beam", projectile_type = /obj/item/projectile/temp, charge_cost = 240),
list(mode_name="exothermic beam", projectile_type = /obj/item/projectile/temp/hot, charge_cost = 240),
)
/obj/item/weapon/gun/energy/temperature/mounted
self_recharge = 1
use_external_power = 1