-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MIRROR] Fix some slime species subtypes not having burn resistance (#…
…2594) * Fix some slime species subtypes not having burn resistance (#82164) ## About The Pull Request All slime species limb subtypes now inherent from the parent `/jelly` subtype, giving them all their proper burn resistance. ## Changelog :cl: Melbert fix: Slimepeople and Luminescents are now 50% burn resistant like Stargazers /:cl: * Fix some slime species subtypes not having burn resistance * Adds Some Jelly --------- Co-authored-by: NovaBot <[email protected]> Co-authored-by: MrMelbert <[email protected]> Co-authored-by: SomeRandomOwl <[email protected]>
- Loading branch information
1 parent
865516a
commit 33f8860
Showing
5 changed files
with
42 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
12 changes: 6 additions & 6 deletions
12
modular_nova/modules/bodyparts/code/roundstartslime_bodyparts.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,27 @@ | ||
// Roundstartslimes! | ||
|
||
/obj/item/bodypart/head/slime/roundstart | ||
/obj/item/bodypart/head/jelly/slime/roundstart | ||
is_dimorphic = TRUE | ||
icon_greyscale = BODYPART_ICON_ROUNDSTARTSLIME | ||
biological_state = (BIO_FLESH|BIO_BLOODED) | ||
|
||
/obj/item/bodypart/chest/slime/roundstart | ||
/obj/item/bodypart/chest/jelly/slime/roundstart | ||
is_dimorphic = TRUE | ||
icon_greyscale = BODYPART_ICON_ROUNDSTARTSLIME | ||
biological_state = (BIO_FLESH|BIO_BLOODED) | ||
|
||
/obj/item/bodypart/arm/left/slime/roundstart | ||
/obj/item/bodypart/arm/left/jelly/slime/roundstart | ||
icon_greyscale = BODYPART_ICON_ROUNDSTARTSLIME | ||
biological_state = (BIO_FLESH|BIO_BLOODED) | ||
|
||
/obj/item/bodypart/arm/right/slime/roundstart | ||
/obj/item/bodypart/arm/right/jelly/slime/roundstart | ||
icon_greyscale = BODYPART_ICON_ROUNDSTARTSLIME | ||
biological_state = (BIO_FLESH|BIO_BLOODED) | ||
|
||
/obj/item/bodypart/leg/left/slime/roundstart | ||
/obj/item/bodypart/leg/left/jelly/slime/roundstart | ||
icon_greyscale = BODYPART_ICON_ROUNDSTARTSLIME | ||
biological_state = (BIO_FLESH|BIO_BLOODED) | ||
|
||
/obj/item/bodypart/leg/right/slime/roundstart | ||
/obj/item/bodypart/leg/right/jelly/slime/roundstart | ||
icon_greyscale = BODYPART_ICON_ROUNDSTARTSLIME | ||
biological_state = (BIO_FLESH|BIO_BLOODED) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
/obj/item/bodypart/head/slime | ||
/obj/item/bodypart/head/jelly/slime | ||
icon_greyscale = DEFAULT_BODYPART_ICON_ORGANIC | ||
|
||
/obj/item/bodypart/chest/slime | ||
/obj/item/bodypart/chest/jelly/slime | ||
icon_greyscale = DEFAULT_BODYPART_ICON_ORGANIC | ||
|
||
/obj/item/bodypart/arm/left/slime | ||
/obj/item/bodypart/arm/left/jelly/slime | ||
icon_greyscale = DEFAULT_BODYPART_ICON_ORGANIC | ||
|
||
/obj/item/bodypart/arm/right/slime | ||
/obj/item/bodypart/arm/right/jelly/slime | ||
icon_greyscale = DEFAULT_BODYPART_ICON_ORGANIC | ||
|
||
/obj/item/bodypart/leg/left/slime | ||
/obj/item/bodypart/leg/left/jelly/slime | ||
icon_greyscale = DEFAULT_BODYPART_ICON_ORGANIC | ||
|
||
/obj/item/bodypart/leg/right/slime | ||
/obj/item/bodypart/leg/right/jelly/slime | ||
icon_greyscale = DEFAULT_BODYPART_ICON_ORGANIC |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters