diff --git a/Resources/Locale/en-US/markings/scars.ftl b/Resources/Locale/en-US/markings/scars.ftl index e2297959f9..201131b3b2 100644 --- a/Resources/Locale/en-US/markings/scars.ftl +++ b/Resources/Locale/en-US/markings/scars.ftl @@ -2,4 +2,7 @@ marking-ScarEyeRight-eyescarright = Eye scar (Right) marking-ScarEyeRight = Eye Scar (Right) marking-ScarEyeLeft-eyescarleft = Eye scar (Left) -marking-ScarEyeLeft = Eye Scar (Left) \ No newline at end of file +marking-ScarEyeLeft = Eye Scar (Left) + +marking-ScarTopSurgeryShort = Top Surgery Scar (Short) +marking-ScarTopSurgeryLong = Top Surgery Scar (Long) diff --git a/Resources/Prototypes/Entities/Mobs/Customization/Markings/scars.yml b/Resources/Prototypes/Entities/Mobs/Customization/Markings/scars.yml index 9475216df5..097675efa7 100644 --- a/Resources/Prototypes/Entities/Mobs/Customization/Markings/scars.yml +++ b/Resources/Prototypes/Entities/Mobs/Customization/Markings/scars.yml @@ -25,3 +25,25 @@ sprites: - sprite: Mobs/Customization/scars.rsi state: scar_eye_left + +- type: marking + id: ScarTopSurgeryShort + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Human] + sexRestriction: [Male] + followSkinColor: true + sprites: + - sprite: Mobs/Customization/scars.rsi + state: scar_top_surgery_short + +- type: marking + id: ScarTopSurgeryLong + bodyPart: Chest + markingCategory: Chest + speciesRestriction: [Human] + sexRestriction: [Male] + followSkinColor: true + sprites: + - sprite: Mobs/Customization/scars.rsi + state: scar_top_surgery_long diff --git a/Resources/Textures/Mobs/Customization/scars.rsi/meta.json b/Resources/Textures/Mobs/Customization/scars.rsi/meta.json index c36c92561b..c3bfd498d6 100644 --- a/Resources/Textures/Mobs/Customization/scars.rsi/meta.json +++ b/Resources/Textures/Mobs/Customization/scars.rsi/meta.json @@ -12,8 +12,16 @@ "directions": 4 }, { - "name": "scar_eye_right", - "directions": 4 + "name": "scar_eye_right", + "directions": 4 + }, + { + "name": "scar_top_surgery_short", + "directions": 4 + }, + { + "name": "scar_top_surgery_long", + "directions": 4 } ] } diff --git a/Resources/Textures/Mobs/Customization/scars.rsi/scar_top_surgery_long.png b/Resources/Textures/Mobs/Customization/scars.rsi/scar_top_surgery_long.png new file mode 100644 index 0000000000..9804e86a17 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/scars.rsi/scar_top_surgery_long.png differ diff --git a/Resources/Textures/Mobs/Customization/scars.rsi/scar_top_surgery_short.png b/Resources/Textures/Mobs/Customization/scars.rsi/scar_top_surgery_short.png new file mode 100644 index 0000000000..649785ace7 Binary files /dev/null and b/Resources/Textures/Mobs/Customization/scars.rsi/scar_top_surgery_short.png differ