Skip to content

Commit

Permalink
suns armor oversight fixes (#2713)
Browse files Browse the repository at this point in the history
## About The Pull Request

One line change to make the Peacekeeper Visor and the Gilded one have
bulletproof helmet stats, as their armor inherits bulletproof vest

Also all SUNS armor now covers arms and legs too (because they're all
coats)

## Why It's Good For The Game

Less inconsistencies between intended design of item and actual
function.

Also I'm still malding.

## Changelog

:cl:
balance: Peacekeeper visors have real armor now (especially against
bullet)
balance: SUNS armored coats now cover all body parts instead of just
chest
/:cl:
  • Loading branch information
Skrem7 authored Feb 9, 2024
1 parent 84c6786 commit 46964ff
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions code/modules/clothing/factions/suns.dm
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,9 @@
mob_overlay_icon = 'icons/mob/clothing/faction/suns/suits.dmi'
lefthand_file = 'icons/mob/inhands/faction/suns/suns_lefthand.dmi'
righthand_file = 'icons/mob/inhands/faction/suns/suns_righthand.dmi'
body_parts_covered = CHEST|GROIN|ARMS|LEGS
cold_protection = CHEST|GROIN|LEGS|ARMS
heat_protection = CHEST|GROIN|LEGS|ARMS

/obj/item/clothing/suit/armor/vest/bulletproof/suns/hos
name = "gilded peacekeeper plating"
Expand All @@ -192,6 +195,9 @@
armor = list("melee" = 15, "bullet" = 30, "laser" = 10, "energy" = 10, "bomb" = 20, "bio" = 0, "rad" = 0, "fire" = 30, "acid" = 25)
lefthand_file = 'icons/mob/inhands/faction/suns/suns_lefthand.dmi'
righthand_file = 'icons/mob/inhands/faction/suns/suns_righthand.dmi'
body_parts_covered = CHEST|GROIN|ARMS|LEGS
cold_protection = CHEST|GROIN|LEGS|ARMS
heat_protection = CHEST|GROIN|LEGS|ARMS

/obj/item/clothing/suit/armor/vest/bulletproof/suns/captain
name = "decorated academic coat"
Expand Down Expand Up @@ -337,6 +343,7 @@
icon_state = "sunsvisor"
item_state = "suns_pkhelmet"
tint = 0
armor = list("melee" = 15, "bullet" = 60, "laser" = 10, "energy" = 10, "bomb" = 40, "bio" = 0, "rad" = 0, "fire" = 50, "acid" = 50) // identical stats to bulletproof helmet, as chest matches bulletproof vest
clothing_flags = BLOCK_GAS_SMOKE_EFFECT | ALLOWINTERNALS //Why? Because I'm not giving PK's sec masks nor hud sunglasses.
icon = 'icons/obj/clothing/faction/suns/head.dmi'
mob_overlay_icon = 'icons/mob/clothing/faction/suns/head.dmi'
Expand Down

0 comments on commit 46964ff

Please sign in to comment.