mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-07-10 23:54:14 +01:00
[MIRROR] [TEST-MERGE FIRST] Allows all limbs to be dismembered and significantly refactors wounds [MDB IGNORE] (#23407)
* [TEST-MERGE FIRST] Allows all limbs to be dismembered and significantly refactors wounds * ah fuck it * test * edaawdawd * Revert "edaawdawd" This reverts commit 47be710fe61a1f4ca79212b29b3e88bf05ec9a3a. * nothing but sheer hatred * freaawd * dzfxg * Fixing some diffs here while we are at it. * These are deprecated and should be removed --------- Co-authored-by: nikothedude <59709059+nikothedude@users.noreply.github.com> Co-authored-by: nikothedude <simon.prouty@gmail.com> Co-authored-by: Giz <13398309+vinylspiders@users.noreply.github.com>
This commit is contained in:
@@ -10,9 +10,9 @@
|
||||
var/mob/living/carbon/carbon_target = target
|
||||
for(var/_limb in carbon_target.bodyparts)
|
||||
var/obj/item/bodypart/limb = _limb
|
||||
var/type_wound = pick(list(/datum/wound/slash/severe, /datum/wound/slash/moderate))
|
||||
var/type_wound = pick(list(/datum/wound/slash/flesh/severe, /datum/wound/slash/flesh/moderate))
|
||||
limb.force_wound_upwards(type_wound, smited = TRUE)
|
||||
type_wound = pick(list(/datum/wound/slash/critical, /datum/wound/slash/severe, /datum/wound/slash/moderate))
|
||||
type_wound = pick(list(/datum/wound/slash/flesh/critical, /datum/wound/slash/flesh/severe, /datum/wound/slash/flesh/moderate))
|
||||
limb.force_wound_upwards(type_wound, smited = TRUE)
|
||||
type_wound = pick(list(/datum/wound/slash/critical, /datum/wound/slash/severe))
|
||||
type_wound = pick(list(/datum/wound/slash/flesh/critical, /datum/wound/slash/flesh/severe))
|
||||
limb.force_wound_upwards(type_wound, smited = TRUE)
|
||||
|
||||
@@ -12,10 +12,10 @@
|
||||
var/mob/living/carbon/carbon_target = target
|
||||
for(var/obj/item/bodypart/limb as anything in carbon_target.bodyparts)
|
||||
var/type_wound = pick(list(
|
||||
/datum/wound/blunt/critical,
|
||||
/datum/wound/blunt/severe,
|
||||
/datum/wound/blunt/critical,
|
||||
/datum/wound/blunt/severe,
|
||||
/datum/wound/blunt/moderate,
|
||||
/datum/wound/blunt/bone/critical,
|
||||
/datum/wound/blunt/bone/severe,
|
||||
/datum/wound/blunt/bone/critical,
|
||||
/datum/wound/blunt/bone/severe,
|
||||
/datum/wound/blunt/bone/moderate,
|
||||
))
|
||||
limb.force_wound_upwards(type_wound, smited = TRUE)
|
||||
|
||||
Reference in New Issue
Block a user