Skip to content

Commit

Permalink
Saving Private Oversized: Quirk balancing adjustments (#199)
Browse files Browse the repository at this point in the history
* Disallow powergamey quirk combos

* Airlocks no longer inflict brain damage on oversized characters
  • Loading branch information
Ephemeralis authored and FFMirrorBot committed Jan 3, 2024
1 parent a8c85ec commit 8b7d4b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 3 additions & 0 deletions code/controllers/subsystem/processing/quirks.dm
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ GLOBAL_LIST_INIT_TYPED(quirk_blacklist, /list/datum/quirk, list(
list(/datum/quirk/spacer_born, /datum/quirk/oversized),
list(/datum/quirk/feline_aspect, /datum/quirk/item_quirk/canine, /datum/quirk/item_quirk/avian),
list(/datum/quirk/all_nighter, /datum/quirk/heavy_sleeper),
list(/datum/quirk/light_drinker, /datum/quirk/drunkhealing),
list(/datum/quirk/oversized, /datum/quirk/freerunning),
list(/datum/quirk/oversized, /datum/quirk/item_quirk/settler),
//NOVA EDIT ADDITION END
))

Expand Down
1 change: 0 additions & 1 deletion modular_nova/modules/oversized/code/door.dm
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@
var/affecting = crossing_human.get_bodypart(BODY_ZONE_HEAD)
crossing_human.apply_damage(15, BRUTE, affecting)
crossing_human.Knockdown(20)
crossing_human.adjustOrganLoss(ORGAN_SLOT_BRAIN, 15) //We do a bit of brain damage
crossing_human.visible_message(span_warning("[crossing_human] slams their head into the frame of [src] with a sickening thud!"), \
span_userdanger("You slam your head against [src]!")
)
Expand Down

0 comments on commit 8b7d4b9

Please sign in to comment.