Skip to content

Commit

Permalink
Yautja Rifle buff (#4222)
Browse files Browse the repository at this point in the history
# About the pull request
While the plasma rifle did just get an update to it's capabilities, it
still isn't hitting xenos for very much considering their health pools
are much larger than a human's. This adds an extra 75% damage to xenos,
and also applies hive interference to make it more consequential.
<!-- Remove this text and explain what the purpose of your PR is.

Mention if you have tested your changes. If you changed a map, make sure
you used the mapmerge tool.
If this is an Issue Correction, you can type "Fixes Issue #169420" to
link the PR to the corresponding Issue number #169420.

Remember: something that is self-evident to you might not be to others.
Explain your rationale fully, even if you feel it goes without saying.
-->

# Explain why it's good for the game
Makes the rifle a little more useful against xenos
# Testing Photographs and Procedure
<details>
<summary>Screenshots & Videos</summary>

Put screenshots and videos here with an empty line between the
screenshots and the `<details>` tags.

</details>


# Changelog
:cl:
balance: Adds an extra 75% damage and hive interference to plasma rifle
vs xenos.
/:cl:
  • Loading branch information
realforest2001 authored Sep 26, 2023
1 parent cbe74d3 commit 0b2315b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion code/modules/projectiles/ammo_datums.dm
Original file line number Diff line number Diff line change
Expand Up @@ -2475,7 +2475,13 @@
flags_ammo_behavior = AMMO_IGNORE_RESIST

damage = 55
penetration = 50
penetration = ARMOR_PENETRATION_TIER_10

/datum/ammo/energy/yautja/rifle/bolt/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 * 0.75, BURN)
xeno.interference = 30

/*
//======
Expand Down

0 comments on commit 0b2315b

Please sign in to comment.