diff --git a/modular_bandastation/balance/_balance.dme b/modular_bandastation/balance/_balance.dme index f8848504db72a..baa774f501ffa 100644 --- a/modular_bandastation/balance/_balance.dme +++ b/modular_bandastation/balance/_balance.dme @@ -2,12 +2,14 @@ #include "code/~defines.dm" -#include "code/speed/base_speed.dm" -#include "code/speed/movespeed_modifier.dm" +#include "code/bodyparts/head.dm" +#include "code/crew_manifest.dm" #include "code/dynamic.dm" #include "code/events.dm" +#include "code/speed/base_speed.dm" +#include "code/speed/movespeed_modifier.dm" #include "code/station_traits.dm" #include "code/supply_packs.dm" -#include "code/crew_manifest.dm" +#include "code/wounds/cranial_fissure.dm" #include "code/~undefs.dm" diff --git a/modular_bandastation/balance/code/bodyparts/head.dm b/modular_bandastation/balance/code/bodyparts/head.dm new file mode 100644 index 0000000000000..dbef562cd23ae --- /dev/null +++ b/modular_bandastation/balance/code/bodyparts/head.dm @@ -0,0 +1,2 @@ +/obj/item/bodypart/head + can_dismember = TRUE diff --git a/modular_bandastation/balance/code/wounds/cranial_fissure.dm b/modular_bandastation/balance/code/wounds/cranial_fissure.dm new file mode 100644 index 0000000000000..695baa25fe0f7 --- /dev/null +++ b/modular_bandastation/balance/code/wounds/cranial_fissure.dm @@ -0,0 +1,2 @@ +/datum/wound_pregen_data/cranial_fissure + required_wounding_types = list(WOUND_BLUNT)