-
-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Endermage Rcorp Updates: Abnormality Nerfs/R-Corp Buffs (#2556)
* Warden Nerf/RCorp Dagger Buff * King of Greed nerf * Info for KoG * Eris Nerf * censored nerf * Abno Overwrites * R-Corp Grenades * more grenades * Mini Censored Nerf * Recommended Changes * Reducing the nerf to censored's ranged attack. * Melting Love Nerf --------- Co-authored-by: Anton Zenkov <[email protected]>
- Loading branch information
1 parent
db39064
commit 2e2a285
Showing
12 changed files
with
315 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/obj/item/grenade/r_corp | ||
name = "r-corp red grenade" | ||
desc = "An anti-abnormality grenade, this weapon excels at damaging abnormality using the tech from L-Corp. It deals 90% less damage to humans." | ||
icon_state = "r_corp" | ||
var/explosion_damage_type = RED_DAMAGE | ||
var/explosion_damage = 300 | ||
var/explosion_range = 2 | ||
|
||
/obj/item/grenade/r_corp/detonate(mob/living/lanced_by) | ||
. = ..() | ||
update_mob() | ||
new /obj/effect/temp_visual/explosion(get_turf(src)) | ||
playsound(loc, 'sound/effects/ordeals/steel/gcorp_boom.ogg', 75, TRUE) | ||
for(var/mob/living/simple_animal/H in view(explosion_range, src)) | ||
H.apply_damage(explosion_damage, explosion_damage_type, null, H.run_armor_check(null, RED_DAMAGE)) | ||
for(var/mob/living/carbon/C in view(explosion_range, src)) | ||
C.apply_damage(explosion_damage * 0.1, explosion_damage_type, null, C.run_armor_check(null, RED_DAMAGE)) | ||
qdel(src) | ||
|
||
/obj/item/grenade/r_corp/white | ||
name = "r-corp white grenade" | ||
icon_state = "r_corp_white" | ||
explosion_damage_type = WHITE_DAMAGE | ||
|
||
/obj/item/grenade/r_corp/black | ||
name = "r-corp black grenade" | ||
icon_state = "r_corp_black" | ||
explosion_damage_type = BLACK_DAMAGE | ||
|
||
/obj/item/grenade/r_corp/pale | ||
name = "r-corp pale grenade" | ||
icon_state = "r_corp_pale" | ||
explosion_damage_type = PALE_DAMAGE | ||
explosion_damage = 250 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.