mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-12 19:22:56 +00:00
189 lines
5.1 KiB
Plaintext
189 lines
5.1 KiB
Plaintext
/obj/item/weapon/gun/energy/laser
|
|
name = "laser carbine"
|
|
desc = "a basic weapon designed kill with concentrated energy bolts"
|
|
icon_state = "laser"
|
|
item_state = "laser"
|
|
fire_sound = 'sound/weapons/Laser.ogg'
|
|
w_class = 3.0
|
|
matter = list("metal" = 2000)
|
|
origin_tech = "combat=3;magnets=2"
|
|
projectile_type = /obj/item/projectile/beam
|
|
|
|
/obj/item/weapon/gun/energy/laser/practice
|
|
name = "practice laser gun"
|
|
desc = "A modified version of the basic laser gun, this one fires less concentrated energy bolts designed for target practice."
|
|
projectile_type = /obj/item/projectile/beam/practice
|
|
clumsy_check = 0
|
|
|
|
obj/item/weapon/gun/energy/laser/retro
|
|
name = "retro laser"
|
|
icon_state = "retro"
|
|
desc = "An older model of the basic lasergun, no longer used by Nanotrasen's security or military forces. Nevertheless, it is still quite deadly and easy to maintain, making it a favorite amongst pirates and other outlaws."
|
|
|
|
|
|
/obj/item/weapon/gun/energy/laser/captain
|
|
name = "antique laser gun"
|
|
icon_state = "caplaser"
|
|
desc = "This is an antique laser gun. All craftsmanship is of the highest quality. It is decorated with assistant leather and chrome. The object menaces with spikes of energy. On the item is an image of Space Station 13. The station is exploding."
|
|
force = 10
|
|
origin_tech = null
|
|
var/charge_tick = 0
|
|
|
|
|
|
New()
|
|
..()
|
|
processing_objects.Add(src)
|
|
|
|
|
|
Del()
|
|
processing_objects.Remove(src)
|
|
..()
|
|
|
|
|
|
process()
|
|
charge_tick++
|
|
if(charge_tick < 4) return 0
|
|
charge_tick = 0
|
|
if(!power_supply) return 0
|
|
power_supply.give(100)
|
|
update_icon()
|
|
return 1
|
|
|
|
|
|
|
|
/obj/item/weapon/gun/energy/laser/cyborg/load_into_chamber()
|
|
if(in_chamber)
|
|
return 1
|
|
if(isrobot(src.loc))
|
|
var/mob/living/silicon/robot/R = src.loc
|
|
if(R && R.cell)
|
|
R.cell.use(100)
|
|
in_chamber = new/obj/item/projectile/beam(src)
|
|
return 1
|
|
return 0
|
|
|
|
|
|
|
|
/obj/item/weapon/gun/energy/lasercannon
|
|
name = "laser cannon"
|
|
desc = "With the L.A.S.E.R. cannon, the lasing medium is enclosed in a tube lined with uranium-235 and subjected to high neutron flux in a nuclear reactor core. This incredible technology may help YOU achieve high excitation rates with small laser volumes!"
|
|
icon_state = "lasercannon"
|
|
fire_sound = 'sound/weapons/lasercannonfire.ogg'
|
|
origin_tech = "combat=4;materials=3;powerstorage=3"
|
|
projectile_type = "/obj/item/projectile/beam/heavylaser"
|
|
|
|
fire_delay = 20
|
|
|
|
isHandgun()
|
|
return 0
|
|
|
|
/obj/item/weapon/gun/energy/lasercannon/mounted/load_into_chamber()
|
|
if(in_chamber)
|
|
return 1
|
|
var/obj/item/rig_module/module = loc
|
|
if(!istype(module))
|
|
return 0
|
|
if(module.holder && module.holder.wearer)
|
|
var/mob/living/carbon/human/H = module.holder.wearer
|
|
if(istype(H) && H.back)
|
|
var/obj/item/weapon/rig/suit = H.back
|
|
if(istype(suit) && suit.cell && suit.cell.charge >= 250)
|
|
suit.cell.use(250)
|
|
in_chamber = new /obj/item/projectile/beam/heavylaser(src)
|
|
return 1
|
|
return 0
|
|
|
|
/obj/item/weapon/gun/energy/lasercannon/cyborg/load_into_chamber()
|
|
if(in_chamber)
|
|
return 1
|
|
if(isrobot(src.loc))
|
|
var/mob/living/silicon/robot/R = src.loc
|
|
if(R && R.cell)
|
|
R.cell.use(250)
|
|
in_chamber = new/obj/item/projectile/beam/heavylaser(src)
|
|
return 1
|
|
return 0
|
|
|
|
/obj/item/weapon/gun/energy/xray
|
|
name = "xray laser gun"
|
|
desc = "A high-power laser gun capable of expelling concentrated xray blasts."
|
|
icon_state = "xray"
|
|
fire_sound = 'sound/weapons/laser3.ogg'
|
|
origin_tech = "combat=5;materials=3;magnets=2;syndicate=2"
|
|
projectile_type = "/obj/item/projectile/beam/xray"
|
|
charge_cost = 50
|
|
|
|
|
|
////////Laser Tag////////////////////
|
|
|
|
/obj/item/weapon/gun/energy/laser/bluetag
|
|
name = "laser tag gun"
|
|
icon_state = "bluetag"
|
|
desc = "Standard issue weapon of the Imperial Guard"
|
|
projectile_type = "/obj/item/projectile/beam/lastertag/blue"
|
|
origin_tech = "combat=1;magnets=2"
|
|
clumsy_check = 0
|
|
var/charge_tick = 0
|
|
|
|
special_check(var/mob/living/carbon/human/M)
|
|
if(ishuman(M))
|
|
if(istype(M.wear_suit, /obj/item/clothing/suit/bluetag))
|
|
return 1
|
|
M << "\red You need to be wearing your laser tag vest!"
|
|
return 0
|
|
|
|
New()
|
|
..()
|
|
processing_objects.Add(src)
|
|
|
|
|
|
Del()
|
|
processing_objects.Remove(src)
|
|
..()
|
|
|
|
|
|
process()
|
|
charge_tick++
|
|
if(charge_tick < 4) return 0
|
|
charge_tick = 0
|
|
if(!power_supply) return 0
|
|
power_supply.give(100)
|
|
update_icon()
|
|
return 1
|
|
|
|
|
|
|
|
/obj/item/weapon/gun/energy/laser/redtag
|
|
name = "laser tag gun"
|
|
icon_state = "redtag"
|
|
desc = "Standard issue weapon of the Imperial Guard"
|
|
projectile_type = "/obj/item/projectile/beam/lastertag/red"
|
|
origin_tech = "combat=1;magnets=2"
|
|
clumsy_check = 0
|
|
var/charge_tick = 0
|
|
|
|
special_check(var/mob/living/carbon/human/M)
|
|
if(ishuman(M))
|
|
if(istype(M.wear_suit, /obj/item/clothing/suit/redtag))
|
|
return 1
|
|
M << "\red You need to be wearing your laser tag vest!"
|
|
return 0
|
|
|
|
New()
|
|
..()
|
|
processing_objects.Add(src)
|
|
|
|
|
|
Del()
|
|
processing_objects.Remove(src)
|
|
..()
|
|
|
|
|
|
process()
|
|
charge_tick++
|
|
if(charge_tick < 4) return 0
|
|
charge_tick = 0
|
|
if(!power_supply) return 0
|
|
power_supply.give(100)
|
|
update_icon()
|
|
return 1 |