Files
necromanceranneandGitHub 2275e1958e Adds deep lore to some pistols, and partially rewrites the baton lore. Repaths some items. (#96056)
## About The Pull Request

Moves the deep lore proc to the parent for guns. 

Adds deep lore to some of the pistols.

Rewrites the deep lore for the stun baton and contractor baton.

Repaths the Liberator pistol to a more sensible path name.

Rechambers the Regal Condor to .45, because I was today years old when I
learned that the Tiger Cooperative are _[radical Christian
extremists](https://github.com/tgstation/common_core/blob/cf1edb9f770e7d3c38ca894e951ab5ac50395a47/Governments%20and%20Organisations/Corporations/The%20Syndicate/The%20Syndicate.md?plain=1#L73)_.
I just thought they were nutso about changelings, I didn't know they
also think they're God's ubermensch. Anyway, that freak who started the
cult would chamber their relic pistol in .45 and you know it.

## Why It's Good For The Game

I love dumping large amounts of text into the code base that will
rarely, if ever, be noticed by the player. It's also the means by which
I can summon forth my good friend Hatterhat to contribute to this
codebase. Like a carrot on a stick.

If I post enough, one day he'll PR flashforge mines like he promised me.
2026-06-01 20:33:27 -05:00

466 lines
24 KiB
Plaintext

/obj/item/gun/energy/laser
name = "\improper Type 5 laser gun"
desc = "The Type 5 Heat Delivery System, developed by Nanotrasen. The workhorse of Nanotrasen's security forces."
icon_state = "laser"
inhand_icon_state = "laser"
w_class = WEIGHT_CLASS_BULKY
custom_materials = list(/datum/material/iron=SHEET_MATERIAL_AMOUNT)
ammo_type = list(/obj/item/ammo_casing/energy/lasergun)
shaded_charge = TRUE
light_color = COLOR_SOFT_RED
/obj/item/gun/energy/laser/Initialize(mapload)
. = ..()
// Only regular lasguns can be slapcrafted
if(type != /obj/item/gun/energy/laser)
return
var/static/list/slapcraft_recipe_list = list(/datum/crafting_recipe/laser/xraylaser, /datum/crafting_recipe/laser/hellgun, /datum/crafting_recipe/laser/ioncarbine)
AddElement(
/datum/element/slapcrafting,\
slapcraft_recipes = slapcraft_recipe_list,\
)
/obj/item/gun/energy/laser/add_seclight_point()
AddComponent(/datum/component/seclite_attachable, \
light_overlay_icon = 'icons/obj/weapons/guns/flashlights.dmi', \
light_overlay = "flight", \
overlay_x = 18, \
overlay_y = 12)
/obj/item/gun/energy/laser/pistol
name = "\improper Type 5/C laser pistol"
desc = "The Type 5 Heat Delivery System, Compact Variant, developed by Nanotrasen. The workhorse of Nanotrasen's security forces, but in a more portable size. \
Sacrifices some stopping power and capacity for ease of carry and faster charging."
icon_state = "laser_pistol"
w_class = WEIGHT_CLASS_NORMAL
projectile_damage_multiplier = 0.8
cell_type = /obj/item/stock_parts/power_store/cell/laser_pistol
ammo_type = list(/obj/item/ammo_casing/energy/lasergun/pistol)
/obj/item/gun/energy/laser/pistol/add_seclight_point()
return
/obj/item/gun/energy/laser/assault
name = "\improper Type 5/A assault laser rifle"
desc = "The Type 5 Heat Delivery System, Assault Variant, developed by Nanotrasen. The workhorse of Nanotrasen's security forces and paramilitary organizations. \
While it sacrifices some stopping power and ease of use, its laser system is remarkably efficient and it boasts some resistance against electromagnetic interference."
icon = 'icons/obj/weapons/guns/wide_guns.dmi'
icon_state = "assault_laser"
inhand_icon_state = "assault_laser"
worn_icon_state = "assault_laser"
slot_flags = ITEM_SLOT_BACK
burst_size = 2
fire_delay = 1
ammo_type = list(/obj/item/ammo_casing/energy/lasergun/assault)
emp_resistance = 2
weapon_weight = WEAPON_HEAVY
projectile_speed_multiplier = 1.5
SET_BASE_PIXEL(-8, 0)
/obj/item/gun/energy/laser/assault/add_seclight_point()
AddComponent(/datum/component/seclite_attachable, \
light_overlay_icon = 'icons/obj/weapons/guns/flashlights.dmi', \
light_overlay = "flight", \
overlay_x = 18, \
overlay_y = 30)
/obj/item/gun/energy/laser/practice
name = "practice laser gun"
desc = "A modified version of the Type 5 laser gun. Fires entirely harmless bolts of directed energy. Safe AND entertaining to fire with abandon."
ammo_type = list(/obj/item/ammo_casing/energy/laser/practice)
clumsy_check = FALSE
item_flags = NONE
gun_flags = NOT_A_REAL_GUN
/obj/item/gun/energy/laser/practice/add_deep_lore()
return
/obj/item/gun/energy/laser/retro
name ="\improper Type 1 laser gun"
desc = "The Type 1 Heat Delivery System, developed by Nanotrasen. No longer used by Nanotrasen's private security or military forces. Nevertheless, \
it is still quite deadly and easy to maintain, making it a favorite amongst pirates and other outlaws."
icon_state = "retro"
ammo_x_offset = 3
/obj/item/gun/energy/laser/soul
name ="\improper Type 3 laser gun"
desc = "The Type 3 Heat Delivery System, developed by Nanotrasen. Quite possibly the most popular model of HDS ever made by Nanotrasen. \
They don't make them like they used to."
icon_state = "laser_soulful"
inhand_icon_state = "laser_soulful"
ammo_x_offset = 1
/obj/item/gun/energy/laser/carbine
name = "\improper Type 5/R laser carbine"
desc = "The burst fire Type 5/R Rapid Heat Delivery System, developed by Nanotrasen. Capable of firing a sustained volley of directed energy projectiles, though each individual projectile lacks the punch of the Type 5."
icon_state = "laser_carbine"
burst_size = 2
fire_delay = 2
projectile_damage_multiplier = 0.75
projectile_speed_multiplier = 1.5
ammo_type = list(/obj/item/ammo_casing/energy/lasergun/carbine)
weapon_weight = WEAPON_MEDIUM
/obj/item/gun/energy/laser/cybersun
name = "\improper Cybersun S-120"
desc = "A laser gun primarily used by syndicate security guards. It fires a rapid spray of low-power plasma beams."
icon_state = "cybersun_s120"
inhand_icon_state = "s120"
ammo_type = list(/obj/item/ammo_casing/energy/lasergun/cybersun)
spread = 14
pin = /obj/item/firing_pin/implant/pindicate
ammo_x_offset = 1
/obj/item/gun/energy/laser/cybersun/Initialize(mapload)
. = ..()
AddComponent(/datum/component/automatic_fire, 0.15 SECONDS, allow_akimbo = FALSE)
/obj/item/gun/energy/laser/cybersun/add_deep_lore()
return
/obj/item/gun/energy/laser/cybersun/unrestricted
pin = /obj/item/firing_pin
/obj/item/gun/energy/laser/carbine/practice
name = "practice laser carbine"
desc = "A modified version of the Type 5/R laser carbine. Fires entirely harmless bolts of directed energy. Safe AND entertaining to fire with abandon."
ammo_type = list(/obj/item/ammo_casing/energy/lasergun/carbine/practice)
clumsy_check = FALSE
item_flags = NONE
gun_flags = NOT_A_REAL_GUN
/obj/item/gun/energy/laser/carbine/practice/add_deep_lore()
return
/obj/item/gun/energy/laser/retro/old
desc = "The NT Type 1 Heat Delivery System, developed by Nanotrasen. This one looks downright ancient. What the hell happened to it?"
ammo_type = list(/obj/item/ammo_casing/energy/lasergun/old)
/obj/item/gun/energy/laser/retro/old/add_deep_lore()
return
/obj/item/gun/energy/laser/hellgun
name = "\improper Type 4 'hellfire' laser gun"
desc = "The Type 4 Heat Delivery System, developed by Nanotrasen. Technically speaking, it is an improvement. \
Legally speaking, possession of this weapon is restricted in most occupied sectors of space. \
The Type 4 is notorious for its ability to render victims a carbonized husk with ease, melting flesh and bone as easily as butter. \
A painful, gruesome death awaits anyone on the wrong end of this gun."
icon_state = "hellgun"
ammo_type = list(/obj/item/ammo_casing/energy/laser/hellfire)
ammo_x_offset = 1
light_color = COLOR_AMMO_HELLFIRE
/obj/item/gun/energy/laser/captain
name = "antique laser gun"
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."
icon_state = "caplaser"
w_class = WEIGHT_CLASS_NORMAL
inhand_icon_state = null
force = 10
ammo_x_offset = 3
selfcharge = 1
resistance_flags = INDESTRUCTIBLE | LAVA_PROOF | FIRE_PROOF | ACID_PROOF
flags_1 = PREVENT_CONTENTS_EXPLOSION_1
ammo_type = list(/obj/item/ammo_casing/energy/laser/hellfire)
light_color = COLOR_AMMO_HELLFIRE
/obj/item/gun/energy/laser/captain/scattershot
name = "scatter shot laser rifle"
desc = "An industrial-grade heavy-duty laser rifle with a modified laser lens to scatter its shot into multiple smaller lasers. \
The inner-core can self-charge for theoretically infinite use."
icon_state = "lasercannon"
w_class = WEIGHT_CLASS_BULKY
inhand_icon_state = "laser"
ammo_type = list(/obj/item/ammo_casing/energy/laser/scatter, /obj/item/ammo_casing/energy/laser)
shaded_charge = FALSE
ammo_x_offset = 1
/obj/item/gun/energy/laser/captain/scattershot/add_deep_lore()
return
/obj/item/gun/energy/laser/cyborg
can_charge = FALSE
desc = "An energy-based laser gun that draws power from the cyborg's internal energy cell directly. So this is what freedom looks like?"
use_cyborg_cell = TRUE
ammo_x_offset = 1
/obj/item/gun/energy/laser/cyborg/Initialize(mapload)
. = ..()
AddElement(/datum/element/empprotection, EMP_PROTECT_ALL)
/obj/item/gun/energy/laser/cyborg/add_deep_lore()
return
/obj/item/gun/energy/laser/scatter
name = "scatter laser gun"
desc = "A laser gun equipped with a refraction kit that spreads bolts."
ammo_type = list(/obj/item/ammo_casing/energy/laser/scatter, /obj/item/ammo_casing/energy/laser)
ammo_x_offset = 1
/obj/item/gun/energy/laser/scatter/add_deep_lore()
return
/obj/item/gun/energy/laser/scatter/shotty
name = "energy shotgun"
icon = 'icons/obj/weapons/guns/ballistic.dmi'
icon_state = "cshotgun"
inhand_icon_state = "shotgun"
desc = "A combat shotgun gutted and refitted with an internal energy emission system. Can switch between scattered disabler shots and taser electrodes."
shaded_charge = FALSE
pin = /obj/item/firing_pin/implant/mindshield
ammo_type = list(/obj/item/ammo_casing/energy/laser/scatter/disabler, /obj/item/ammo_casing/energy/electrode)
automatic_charge_overlays = FALSE
ammo_x_offset = 1
///Laser Cannon
/obj/item/gun/energy/lasercannon
name = "accelerator laser cannon"
desc = "An advanced laser cannon that does more damage the farther away the target is."
icon_state = "lasercannon"
inhand_icon_state = "laser"
worn_icon_state = null
w_class = WEIGHT_CLASS_BULKY
force = 10
obj_flags = CONDUCTS_ELECTRICITY
slot_flags = ITEM_SLOT_BACK
ammo_type = list(/obj/item/ammo_casing/energy/laser/accelerator)
pin = null
ammo_x_offset = 3
///X-ray gun
/obj/item/gun/energy/laser/xray
name = "\improper Type 6 X-ray laser gun"
desc = "The Type 6 Heat Delivery System, developed by Nanotrasen. \
Capable of expelling concentrated 'X-ray' blasts that pass through multiple soft targets and heavier materials."
icon_state = "xray"
w_class = WEIGHT_CLASS_BULKY
inhand_icon_state = null
ammo_type = list(/obj/item/ammo_casing/energy/xray)
ammo_x_offset = 3
custom_materials = list(
/datum/material/iron = SHEET_MATERIAL_AMOUNT * 3.5,
/datum/material/gold = SHEET_MATERIAL_AMOUNT * 2.5,
/datum/material/uranium = SHEET_MATERIAL_AMOUNT * 2,
/datum/material/titanium = SHEET_MATERIAL_AMOUNT,
/datum/material/bluespace = SHEET_MATERIAL_AMOUNT,
)
shaded_charge = FALSE
light_color = LIGHT_COLOR_GREEN
////////Laser Tag////////////////////
/obj/item/gun/energy/laser/bluetag
name = "laser tag gun"
icon_state = "bluetag"
desc = "A retro laser gun modified to fire harmless blue beams of light. Sound effects included!"
ammo_type = list(/obj/item/ammo_casing/energy/laser/bluetag)
item_flags = NONE
clumsy_check = FALSE
pin = /obj/item/firing_pin/tag/blue
ammo_x_offset = 2
selfcharge = TRUE
gun_flags = NOT_A_REAL_GUN
/obj/item/gun/energy/laser/bluetag/hitscan
ammo_type = list(/obj/item/ammo_casing/energy/laser/bluetag/hitscan)
/obj/item/gun/energy/laser/bluetag/add_deep_lore()
return
/obj/item/gun/energy/laser/redtag
name = "laser tag gun"
icon_state = "redtag"
desc = "A retro laser gun modified to fire harmless beams red of light. Sound effects included!"
ammo_type = list(/obj/item/ammo_casing/energy/laser/redtag)
item_flags = NONE
clumsy_check = FALSE
pin = /obj/item/firing_pin/tag/red
ammo_x_offset = 2
selfcharge = TRUE
gun_flags = NOT_A_REAL_GUN
/obj/item/gun/energy/laser/redtag/add_deep_lore()
return
/obj/item/gun/energy/laser/redtag/hitscan
ammo_type = list(/obj/item/ammo_casing/energy/laser/redtag/hitscan)
// luxury shuttle funnies
/obj/item/firing_pin/paywall/luxury
multi_payment = TRUE
payment_amount = 20
/obj/item/gun/energy/laser/luxurypaywall
name = "luxurious laser gun"
desc = "A laser gun modified to cost 20 credits to fire. Point towards poor people."
pin = /obj/item/firing_pin/paywall/luxury
// The Deep Lore //
// Laser Gun
/obj/item/gun/energy/laser/add_deep_lore()
AddElement(/datum/element/examine_lore, \
lore_hint = span_notice("You can [EXAMINE_HINT("look closer")] to learn a little more about [src]."), \
lore = "The NT Type 5 Heat Delivery System (sometimes referred to as the HDS-5 in promotional material) is what truly put Nanotrasen \
head and shoulders above most weapon manufacturers in the modern era. All modern energy weaponry offered by the company have \
the success of the Type 5 to thank for setting the standard for energy-based weapon platforms.<br>\
<br>\
Adopted as the standard infantry firearm for Nanotrasen military forces, as well as private security lethal armaments, few can deny \
the weapon's reliability, and at an affordable price!<br>\
<br>\
However, the weapon platform still possesses many of the vulnerabilities of previous energy-based weaponry. Onboard power supplies \
cannot be adequately shielded from external electromagnetic pulses that might interfere with the weapon's functionality without \
also severely jeopardizing thermal distribution into the weapon's heatsink. The Type 4, which never saw wider adoption, remains a \
haunting example to Nanotrasen's weapons division as to the consequences when a HDS is unable to expel thermal buildup safely.<br>\
<br>\
Certainly, the Melted Veterans of Galpha 5 advocacy group will never let them forget it." \
)
// Retro Laser Gun
/obj/item/gun/energy/laser/retro/add_deep_lore()
AddElement(/datum/element/examine_lore, \
lore_hint = span_notice("You can [EXAMINE_HINT("look closer")] to learn a little more about [src]."), \
lore = "The NT Type 1 Heat Delivery System (sometimes referred to as the HDS-1 in older weapon catalogs) was a weapon that \
marked the beginning of a new era of firearm development.<br>\
<br>\
Invented in the think-tank laboratories of Nanotrasen's weapon development team towards the end of the 24th century, the Type 1 found \
itself adopted broadly by various factions and military entities vying for control over the frontier once it hit the market. One \
hallmark of those who stood successful in these conflicts was the adoption of the Type 1 as a standard infantry \
weapon. The logistics required to maintain the operational peak of the HDS-1 allowed most quartermasters to merely dump a half \
dozen of the weapons into the hands of bloodythirsty marines, knowing full well the weapons were rugged enough to survive \
most anything thrown at them, only needing a recharging station with a power supply to become operational again once they ran empty.<br>\
<br>\
So many of these weapons exist today that even modern conflicts may see more usage of the HDS-1 than the updated and equally \
reliable HDS5 employed by Nanotrasen's modern combat forces. Nanotrasen, despite their best efforts, still have not managed \
to encourage potential customers to swap for the new model despite a generous exchange discount." \
)
// Soulful Laser Gun
/obj/item/gun/energy/laser/soul/add_deep_lore()
AddElement(/datum/element/examine_lore, \
lore_hint = span_notice("You can [EXAMINE_HINT("look closer")] to learn a little more about [src]."), \
lore = "The NT Type 3 Heat Delivery System (sometimes referred to as the HDS-3 in the memories of security officers) is quite possibly \
the most common type of HDS still available on the market. Fondly regarded, with quite a few diehard fans still clinging to their \
Type 3s like their lives depended on it, the weapon has its own place in history as the 'gun that could do it all'.<br>\
<br>\
The Type 3 line ran for several decades before attempts to replace it ever even crossed Nanotrasen's minds. When people think \
'laser gun', the Type 3 is usually what comes to mind.<br>\
<br>\
When Nanotrasen announced its replacement, the Type 4, skeptics were quick to pan the weapon, claiming that it lacked several notable \
features that users of the Type 3 had enjoyed for years. As it turns out, most of those critics would end up vindicated after word of \
Galpha 5 and the terrible, terrible consequences of the Type 4's volatile nature came to light. Most stuck to the Type 3 and never \
looked back, even when the Type 5 rolled out to considerable success in its own right.<br>\
<br>\
Nanotrasen still services Type 3s, with many of the parts used in the weapon sharing compatible cousins in the Type 5. Most \
examples of the Type 3 today may actually be closer in function and form to the Type 5 than they were during their original \
construction, depending on how often it is serviced." \
)
// hellfire laser gun
/obj/item/gun/energy/laser/hellgun/add_deep_lore()
AddElement(/datum/element/examine_lore, \
lore_hint = span_notice("You can [EXAMINE_HINT("look closer")] to learn a little more about [src]."), \
lore = "The NT Type 4 Heat Delivery System (sometimes referred to as the HDS-4 in legal documentation) is considered a notable \
example of Nanotrasen's weapons development teams flying too close to the sun.<br>\
<br>\
The success of the Type 3 resulted in shareholders urging marketing to bring out the 'next best thing' in energy-based weaponry. \
At the time, Nanotrasen's weapons division had a prototype still in the works, with recently-learned lessons \
from the failure-prone Type 2 in mind after it had more than a few catastrophic failures in testing. \
However, there were some concerns raised amongst researchers as to the 'moral implications' \
that might result from unleashing 'that much directed radioactive material' towards a living being. \
Executives at the time brushed off such concerns, as there was money to be made and already ultrawealthy shareholders to feed the earnings.<br>\
<br>\
The Type 4 was rushed onto the market within the next quarter, even before most common safety mechanisms had been properly tested and implemented. \
Reports immediately began flooding in of horrific accidental discharges, battlefield atrocities, and unexpected spontaneous combustion \
from excessive exposure to the untested experimental heat distribution systems 'taking its pound of flesh' for the 'hell it unleashed'.<br>\
<br>\
News outlets and tabloids alike railed against the company for creating what was now being called the 'hellfire' laser gun. In response, most \
legal bodies rushed to ban the firearm from sales within their region of space, and the weapon became infamous for its unethical means of ending \
sentient life. Laws were passed to ensure power regulators were installed in all future energy-based weaponry sold by Nanotrasen. Nanotrasen quickly \
discontinued the Type 4 in response, and it never saw production from that day forth. However, retrofit kits still exist \
on the black market and in some of Nanotrasen's own warehouses. While, legally, it is unlawful to sell and possess a Type 4, Nanotrasen itself \
does not regulate possession of the firearm aboard its own stations, nor does any legal body intend on preventing them from utilizing it in defense \
of its own assets." \
)
// Antique Laser Gun
/obj/item/gun/energy/laser/captain/add_deep_lore()
AddElement(/datum/element/examine_lore, \
lore_hint = span_notice("You can [EXAMINE_HINT("look closer")] to learn a little more about [src]."), \
lore = "For a brief period, Nanotrasen produced a series of custom-made Type 4 laser guns for a select group of \
clients, primarily composed of wealthy starship captains, politicians, and military leaders looking to demonstrate prestige before \
the common folk.<br>\
<br>\
The Type 4 was a commercial failure, but this particular variant earned its own infamy, linked to narratives of crazed \
despots using it to put down political rivals and dissidents, as well as tales of mad generals marching ahead of their \
forces, this weapon brandished and running hot in an outstretched arm, pointed towards any moving target they could find on the \
battlefield.<br>\
<br>\
Copies of this firearm are now prohibited within TerraGov space, and any captured are quickly decommissioned.\
This is largely why Nanotrasen <b>insists</b> that any examples held by ranking officers be kept under lock and key. \
All records of the schematics surrounding this variant of the Type 4 were seized and destroyed, and the creator behind \
it was detained in a maximum security TerraGov sanitorium. When they found her again, she appeared to have smeared the walls in her \
own blood, claiming that 'She' was coming, and that she had paid dearly for the knowledge of how to make the weapon.<br>\
<br>\
Even the microfusion breeder cell housed inside the weapon is practically a lost technology, and Nanotrasen have been unable \
to reverse engineer the devices exact means of functionality.<br>\
<br>\
The Syndicate are obviously just as interested in exactly how this weapon is capable of self-perpetuation, hence why the collective \
seem hell-bent on capturing them whenever possible. Maybe keep this somewhere safe. Or don't." \
)
// X-ray Laser Gun
/obj/item/gun/energy/laser/xray/add_deep_lore()
AddElement(/datum/element/examine_lore, \
lore_hint = span_notice("You can [EXAMINE_HINT("look closer")] to learn a little more about [src]."), \
lore = "The NT Type 6 Heat Delivery System (sometimes referred to as the HDS6 in research notes) is a breakthrough in the \
development of man-portable directed energy weaponry.<br>\
<br>\
Very little is known about the Type 6, as it is a relatively new experimental weapon only accessible to Nanotrasen security forces. \
Somehow, Nanotrasen has found a means to 'slip' the energy beams produced by the Type 6 through unintended targets, only impacting \
once it has made contact with a pre-designated target by the weapon's user. It appears to be unable to slip past organic matter reliably, \
which hampers its potential for eliminating friendly-fire. However, inorganic targets are left unscathed unless the weapon is directed towards \
firing upon the object. This makes the weapon exceptional for asset recovery, defense of entrenched positions, and assaults on defensive structures. <br>\
<br>\
Nanotrasen claims that this phenomenon is achieved 'through the power of X-rays'. Most critics have highlighted that this is total nonsense. Some claim \
that Nanotrasen has discovered a yet-unknown state of matter that the company is exploiting for weapons development and manufacturing. The most \
conspiratorially minded of Nanotrasen's critics have even gone as far as to claim it is 'proof of ectoplasm as the sixth element,' \
perhaps even allowing the weapon to operate through supernatural means: perhaps even powered by the 'spirits of the damned'.<br>\
<br>\
Whatever the truth may be, the weapon seems to function as advertized, and is even more energy efficient than the Type 5. Nanotrasen \
expects full commercial rollout sometime in the next quarter." \
)
// Laser Carbine
/obj/item/gun/energy/laser/carbine/add_deep_lore()
AddElement(/datum/element/examine_lore, \
lore_hint = span_notice("You can [EXAMINE_HINT("look closer")] to learn a little more about [src]."), \
lore = "The NT Type 5/R Rapid Heat Delivery System (sometimes referred to as the HDS-5/R in briefing manuals, and 'that piece of shit flashlight' \
amongst TGMC troopers) was a shaky first step into automatic directed energy weaponry. <br>\
<br>\
Intended for use in special operations, particularly in the hands of orbital drop shock troopers, the Type 5/R was foreseen to be an excellent \
addition to Nanotrasen's arsenal of offerings to military forces across occupied space. However, field performance proved grim.<br>\
<br>\
The advantages of directed energy weapons is the lightweight impacts felt on the supply chain for logistical officers and quartermasters due to the \
only necessary upkeep for the weapons being a consistent power supply, either established or brought to the front, and the occassional cleaning.<br>\
<br>\
This, however, is not a benefit that soldiers operating behind enemy lines or during tactical deployments are capable of exploiting. As a result, \
operators often chafed against the limited ammunition supply compared to conventional ballistic firearms, and the weapon quickly was abandoned by \
most special forces units.<br>\
<br>\
Instead, the weapon found favour in the hands of private security teams, who enjoyed the volume of fire it provided, while maintaining \
exceptional accuracy even at long ranges, along with being compact enough to allow a high degree of discretion compared to a full sized rifle. \
The weapon is also often utilized by rim pirates and marauders, giving the weapon something of an ill reputation." \
)