From ac31304eb127e30f9ede15a146a9482cbafedd25 Mon Sep 17 00:00:00 2001 From: SchrodingersWolf <108938550+SchrodingersWolf@users.noreply.github.com> Date: Mon, 25 Nov 2024 13:08:31 -0500 Subject: [PATCH 1/2] (Laser) Slugs are BACK! --- code/modules/projectiles/ammunition/ammo_casings.dm | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/code/modules/projectiles/ammunition/ammo_casings.dm b/code/modules/projectiles/ammunition/ammo_casings.dm index f8b17ff619688..ead954cb158c2 100644 --- a/code/modules/projectiles/ammunition/ammo_casings.dm +++ b/code/modules/projectiles/ammunition/ammo_casings.dm @@ -252,6 +252,15 @@ muzzle_flash_range = MUZZLE_FLASH_RANGE_NORMAL muzzle_flash_color = LIGHT_COLOR_LIGHTBLUE +/obj/item/ammo_casing/shotgun/laserslug + name = "laser slug" + desc = "An rudimentary, yet easy to produce .410 bore shotgun shell that uses a micro laser to replicate the effects of a laser weapon in a ballistic package." + icon_state = "improvshell" + projectile_type = /obj/item/projectile/beam/laser + muzzle_flash_strength = MUZZLE_FLASH_STRENGTH_NORMAL + muzzle_flash_range = MUZZLE_FLASH_RANGE_NORMAL + muzzle_flash_color = LIGHT_COLOR_DARKRED + /obj/item/ammo_casing/shotgun/lasershot name = "lasershot" desc = "An advanced 12 gauge shell that uses a multitude of lenses to split a high-powered laser into eight small beams." From e11a770805dd93de63e445e80727a99867efdb9b Mon Sep 17 00:00:00 2001 From: SchrodingersWolf <108938550+SchrodingersWolf@users.noreply.github.com> Date: Mon, 25 Nov 2024 13:43:16 -0500 Subject: [PATCH 2/2] The shotgun is the perfect home defense weapon --- code/modules/projectiles/ammunition/ammo_casings.dm | 2 +- code/modules/research/designs/autolathe_designs.dm | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/code/modules/projectiles/ammunition/ammo_casings.dm b/code/modules/projectiles/ammunition/ammo_casings.dm index ead954cb158c2..059c26cedb618 100644 --- a/code/modules/projectiles/ammunition/ammo_casings.dm +++ b/code/modules/projectiles/ammunition/ammo_casings.dm @@ -254,7 +254,7 @@ /obj/item/ammo_casing/shotgun/laserslug name = "laser slug" - desc = "An rudimentary, yet easy to produce .410 bore shotgun shell that uses a micro laser to replicate the effects of a laser weapon in a ballistic package." + desc = "A rudimentary 12 gauge shotgun shell that replicates the effects of a laser weapon with a low-powered laser." icon_state = "improvshell" projectile_type = /obj/item/projectile/beam/laser muzzle_flash_strength = MUZZLE_FLASH_STRENGTH_NORMAL diff --git a/code/modules/research/designs/autolathe_designs.dm b/code/modules/research/designs/autolathe_designs.dm index 2ec5338c3348a..88c79a416764a 100644 --- a/code/modules/research/designs/autolathe_designs.dm +++ b/code/modules/research/designs/autolathe_designs.dm @@ -769,6 +769,14 @@ build_path = /obj/item/ammo_casing/shotgun/incendiary category = list("hacked", "Security") +/datum/design/laser_slug + name = "Laser Slug" + id = "laser_slug" + build_type = AUTOLATHE + materials = list(MAT_METAL = 4000, MAT_GLASS = 4000) //Power comes at a price of 4000 glass + build_path = /obj/item/ammo_casing/shotgun/laserslug + category = list("hacked", "Security") + /datum/design/buckshot name = "Buckshot Shell" id = "buckshot"