mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-06-28 08:43:34 +01:00
a93ef4dd1b
- Detective's shoulder holster now only fits projectile-based (not energy) handguns. - Swaps the detective's belt holster for the old shoulder holster. - Makes some specific handguns actually fit inside of holsters. - Unrelated: Removes a debug output from /code/modules/power/singularity/generator.dm
56 lines
1.7 KiB
Plaintext
56 lines
1.7 KiB
Plaintext
/obj/item/weapon/gun/projectile/automatic/pistol
|
|
name = "syndicate pistol"
|
|
desc = "A small, easily concealable 10mm handgun. Has a threaded barrel for suppressors."
|
|
icon_state = "pistol"
|
|
w_class = 2
|
|
origin_tech = "combat=2;materials=2;syndicate=2"
|
|
mag_type = "/obj/item/ammo_box/magazine/m10mm"
|
|
can_suppress = 1
|
|
isHandgun()
|
|
return 1
|
|
|
|
/obj/item/weapon/gun/projectile/automatic/pistol/update_icon()
|
|
..()
|
|
icon_state = "[initial(icon_state)][chambered ? "" : "-e"][silenced ? "-suppressed" : ""]"
|
|
return
|
|
|
|
/obj/item/weapon/gun/projectile/automatic/m2411
|
|
name = "M2411"
|
|
desc = "John Browning's classic updated for the modern day. Uses .45 rounds."
|
|
icon_state = "m2411"
|
|
w_class = 3.0
|
|
origin_tech = "combat=3;materials=2"
|
|
mag_type = "/obj/item/ammo_box/magazine/m45"
|
|
isHandgun()
|
|
return 1
|
|
|
|
|
|
/obj/item/weapon/gun/projectile/automatic/m2411/update_icon()
|
|
..()
|
|
icon_state = "[initial(icon_state)][chambered ? "" : "-e"]"
|
|
return
|
|
|
|
/obj/item/weapon/gun/projectile/automatic/deagle
|
|
name = "desert eagle"
|
|
desc = "A robust .50 AE handgun."
|
|
icon_state = "deagle"
|
|
force = 14.0
|
|
mag_type = "/obj/item/ammo_box/magazine/m50"
|
|
isHandgun()
|
|
return 1
|
|
|
|
/obj/item/weapon/gun/projectile/automatic/deagle/update_icon()
|
|
..()
|
|
icon_state = "[initial(icon_state)][magazine ? "" : "-e"]"
|
|
|
|
/obj/item/weapon/gun/projectile/automatic/deagle/gold
|
|
desc = "A gold plated desert eagle folded over a million times by superior martian gunsmiths. Uses .50 AE ammo."
|
|
icon_state = "deagleg"
|
|
item_state = "deagleg"
|
|
|
|
|
|
|
|
/obj/item/weapon/gun/projectile/automatic/deagle/camo
|
|
desc = "A Deagle brand Deagle for operators operating operationally. Uses .50 AE ammo."
|
|
icon_state = "deaglecamo"
|
|
item_state = "deagleg" |