mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
-Made all gun and spear sizes larger so that they will no longer fit into backpacks. --Energy spears and energy swords will fit while deactivated, but not while active (unchanged) -Tweaked the Floragun have no recoil for micros.
20 lines
744 B
Plaintext
20 lines
744 B
Plaintext
/obj/item/weapon/gun/energy/temperature
|
|
name = "temperature gun"
|
|
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
|