mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-30 08:37:43 +01:00
[MODULAR] Fixes the roundstart slime species being able to get fracture wounds (#20712)
* Fixes some issues with roundstart slimes not getting the right bio flags on their limbs They are now a subtype of slime * Removes roundstartslimes from the possible list of subtypes to be able to transform into * Revert "Removes roundstartslimes from the possible list of subtypes to be able to transform into" This reverts commit 047312a4683f9669f7240fc09aaaec66926b6068. * whoop * Roundstart slimes can get flesh wounds
This commit is contained in:
@@ -1,27 +1,27 @@
|
||||
// Roundstartslimes!
|
||||
|
||||
/obj/item/bodypart/head/roundstartslime
|
||||
limb_id = SPECIES_SLIMEPERSON // same icon state, no real reason to make a new define
|
||||
/obj/item/bodypart/head/slime/roundstart
|
||||
is_dimorphic = TRUE
|
||||
icon_greyscale = BODYPART_ICON_ROUNDSTARTSLIME
|
||||
biological_state = BIO_FLESH
|
||||
|
||||
/obj/item/bodypart/chest/roundstartslime
|
||||
limb_id = SPECIES_SLIMEPERSON
|
||||
/obj/item/bodypart/chest/slime/roundstart
|
||||
is_dimorphic = TRUE
|
||||
icon_greyscale = BODYPART_ICON_ROUNDSTARTSLIME
|
||||
biological_state = BIO_FLESH
|
||||
|
||||
/obj/item/bodypart/arm/left/roundstartslime
|
||||
limb_id = SPECIES_SLIMEPERSON
|
||||
/obj/item/bodypart/arm/left/slime/roundstart
|
||||
icon_greyscale = BODYPART_ICON_ROUNDSTARTSLIME
|
||||
biological_state = BIO_FLESH
|
||||
|
||||
/obj/item/bodypart/arm/right/roundstartslime
|
||||
limb_id = SPECIES_SLIMEPERSON
|
||||
/obj/item/bodypart/arm/right/slime/roundstart
|
||||
icon_greyscale = BODYPART_ICON_ROUNDSTARTSLIME
|
||||
biological_state = BIO_FLESH
|
||||
|
||||
/obj/item/bodypart/leg/left/roundstartslime
|
||||
limb_id = SPECIES_SLIMEPERSON
|
||||
/obj/item/bodypart/leg/left/slime/roundstart
|
||||
icon_greyscale = BODYPART_ICON_ROUNDSTARTSLIME
|
||||
biological_state = BIO_FLESH
|
||||
|
||||
/obj/item/bodypart/leg/right/roundstartslime
|
||||
limb_id = SPECIES_SLIMEPERSON
|
||||
/obj/item/bodypart/leg/right/slime/roundstart
|
||||
icon_greyscale = BODYPART_ICON_ROUNDSTARTSLIME
|
||||
biological_state = BIO_FLESH
|
||||
|
||||
+6
-6
@@ -39,12 +39,12 @@
|
||||
mutanttongue = /obj/item/organ/internal/tongue
|
||||
|
||||
bodypart_overrides = list( //Overriding jelly bodyparts
|
||||
BODY_ZONE_L_ARM = /obj/item/bodypart/arm/left/roundstartslime,
|
||||
BODY_ZONE_R_ARM = /obj/item/bodypart/arm/right/roundstartslime,
|
||||
BODY_ZONE_HEAD = /obj/item/bodypart/head/roundstartslime,
|
||||
BODY_ZONE_L_LEG = /obj/item/bodypart/leg/left/roundstartslime,
|
||||
BODY_ZONE_R_LEG = /obj/item/bodypart/leg/right/roundstartslime,
|
||||
BODY_ZONE_CHEST = /obj/item/bodypart/chest/roundstartslime,
|
||||
BODY_ZONE_L_ARM = /obj/item/bodypart/arm/left/slime/roundstart,
|
||||
BODY_ZONE_R_ARM = /obj/item/bodypart/arm/right/slime/roundstart,
|
||||
BODY_ZONE_HEAD = /obj/item/bodypart/head/slime/roundstart,
|
||||
BODY_ZONE_L_LEG = /obj/item/bodypart/leg/left/slime/roundstart,
|
||||
BODY_ZONE_R_LEG = /obj/item/bodypart/leg/right/slime/roundstart,
|
||||
BODY_ZONE_CHEST = /obj/item/bodypart/chest/slime/roundstart,
|
||||
)
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user