Skip to content

Commit

Permalink
special b/s now will drop a man instantly
Browse files Browse the repository at this point in the history
  • Loading branch information
KoishiVibe committed Mar 19, 2024
1 parent 5fc544e commit 001734a
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions code/datums/ammo/bullet/shotgun.dm
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,14 @@

accurate_range = 8
max_range = 8
damage = 60
damage = 40
bonus_projectiles_amount = EXTRA_PROJECTILES_TIER_8
firing_freq_offset = SOUND_FREQ_LOW
//special b/s type is super buffed vs xenomorphs but not against anything else
/datum/ammo/bullet/shotgun/buckshot/special/on_hit_mob(mob/hit_mob, obj/projectile/hit_projectile)
if(isxeno(hit_mob))
var/mob/living/carbon/xenomorph/xeno = hit_mob
xeno.apply_damage(damage * 2.00, BRUTE)

//buckshot variant only used by the masterkey shotgun attachment.
/datum/ammo/bullet/shotgun/buckshot/masterkey
Expand Down Expand Up @@ -194,9 +199,14 @@

accurate_range = 8
max_range = 8
damage = 90
damage = 8
firing_freq_offset = SOUND_FREQ_LOW

/datum/ammo/bullet/shotgun/spread/special/on_hit_mob(mob/hit_mob, obj/projectile/hit_projectile)
if(isxeno(hit_mob))
var/mob/living/carbon/xenomorph/xeno = hit_mob
xeno.apply_damage(damage * 10, BRUTE)

/*
8 GAUGE SHOTGUN AMMO
*/
Expand Down

0 comments on commit 001734a

Please sign in to comment.