adds some new coalition weapons (#18812)

![image](https://github.com/Aurorastation/Aurora.3/assets/70682905/55b43203-b627-49c2-af2d-db5bc6d87892)

Adds four new weapons from the United Syndicates and the Federal
Technocracy.

Himeo has received two new guns based on the plasma cutter; the Guthrie
assault blaster and the Sabo-Tabby heavy blaster pistol. Both use a
hydrogen cell 'magazine' to mimic the more advanced, more accurate
Zavodskoi blasters on the market.

Galatea, likewise, has received the O61-B laser rifle pack set, an
export model of their own O61 Infantry Laser Rifle, and a gauss 'nitro
express' rifle, which fires tungsten slugs. Attempting to fire the O61
without a Galatean implant will result in consequences.

All sprites are my own handiwork, and all credit for the laser pack goes
to Alberyk for his work on the gatling gun. Matt and Schwann also
provided a great deal of help.
This commit is contained in:
juniper
2024-05-05 13:56:57 +00:00
committed by GitHub
parent 6c079c4e1b
commit 0cf56bb126
12 changed files with 382 additions and 0 deletions
@@ -0,0 +1,36 @@
// GALATEAN BIOAUGMENTATIONS
// the weird, uncomfortable places where meat meets metal
/obj/item/implant/export_lasgun
name = "bioelectrical conduit"
desc = "A Galatean bioaugmentation that channels the innate bioelectricity of the human nervous system. Use of this augment against the terms of its packaging are a violation of Galatean law."
icon_state = "implant_excel"
implant_icon = "excel"
implant_color = "#ffd079"
origin_tech = list(TECH_MATERIAL = 1, TECH_BIO = 2, TECH_ILLEGAL = 3)
default_action_type = null
known = TRUE
/obj/item/implant/export_lasgun/get_data()
. = {"
<b>Implant Specifications:</b><BR>
<b>Name:</b> Planetary Weapons Development Bureau Bioelectricity Conduit, Export-Model <BR>
<b>Life:</b> Six years.<BR>
<b>Important Notes:</b> Personnel injected with this device can operate certain approved models of laser weapon without side effects..<BR>
<HR>
<b>Implant Details:</b><BR>
<b>Function:</b> Conducts the body's electricity into usable forms of electricity for Galatean export-model weaponry.<BR>
<b>Integrity:</b> Implant will last for a period of six standard years, after which it will degrade and require removal."}
/obj/item/implant/export_lasgun/implanted(mob/M)
to_chat(M, SPAN_GOOD("Static dances across your skin."))
if(ishuman(M))
return TRUE
/obj/item/implantcase/export_lasgun
name = "glass case - 'bioconduit'"
imp = /obj/item/implant/export_lasgun
/obj/item/implanter/export_lasgun
name = "implanter-bioconductor"
imp = /obj/item/implant/export_lasgun
@@ -211,3 +211,14 @@
. = ..()
charge = 0
update_icon()
/obj/item/cell/hydrogen
name = "hydrogen blaster canister"
desc = "An industrial-grade hydrogen power cell, used in various blaster weapons- or blaster-adjacent power tools- in place of expensive phoron."
icon_state = "hycell"
maxcharge = 10000 // hydrogen is actually used today in electric cars
matter = list(DEFAULT_WALL_MATERIAL = 700, MATERIAL_GLASS = 70)
w_class = ITEMSIZE_SMALL
drop_sound = 'sound/items/drop/gascan.ogg'
pickup_sound = 'sound/items/pickup/gascan.ogg'
origin_tech = list(TECH_POWER = 4)