diff --git a/code/datums/ammo/bullet/rifle.dm b/code/datums/ammo/bullet/rifle.dm index e305706123..f3f57533e6 100644 --- a/code/datums/ammo/bullet/rifle.dm +++ b/code/datums/ammo/bullet/rifle.dm @@ -190,18 +190,20 @@ name = "irradiated armor-piercing 10x28 bullet" debilitate = list(0,0,0,3,0,0,0,1) +// Terminator Smartgun + /datum/ammo/bullet/rifle/heavy/dirty name = "irradiated 10x28 bullet" - damage = 60 debilitate = list(0,0,0,3,0,0,0,1) + damage = 60 headshot_state = HEADSHOT_OVERLAY_MEDIUM shrapnel_chance = SHRAPNEL_CHANCE_TIER_7 damage_falloff = DAMAGE_FALLOFF_TIER_9 -/datum/ammo/bullet/rifle/heavy/dirty/ap +/datum/ammo/bullet/rifle/heavy/ap/dirty name = "irradiated armor-piercing 10x28 bullet" + debilitate = list(0,0,0,3,0,0,0,1) damage = 45 - penetration = ARMOR_PENETRATION_TIER_8 // RMC Smartgun diff --git a/code/modules/projectiles/guns/smartgun.dm b/code/modules/projectiles/guns/smartgun.dm index 88878b8c4a..c605b55ae9 100644 --- a/code/modules/projectiles/guns/smartgun.dm +++ b/code/modules/projectiles/guns/smartgun.dm @@ -690,7 +690,7 @@ /obj/item/weapon/gun/smartgun/dirty/elite name = "\improper M56T 'Terminator' smartgun" ammo_primary = /datum/ammo/bullet/rifle/heavy/dirty //Toggled ammo type - ammo_secondary = /datum/ammo/bullet/rifle/heavy/dirty/ap ///Toggled ammo type + ammo_secondary = /datum/ammo/bullet/rifle/heavy/ap/dirty ///Toggled ammo type desc = "The actual firearm in the 4-piece M56T Smartgun System. If you have this, you're about to bring some serious pain to anyone in your way.\nYou may toggle firing restrictions by using a special action.\nAlt-click it to open the feed cover and allow for reloading." /obj/item/weapon/gun/smartgun/dirty/elite/Initialize(mapload, ...)