diff --git a/Content.Shared/GameObjects/Components/Body/Part/IBodyPart.cs b/Content.Shared/GameObjects/Components/Body/Part/IBodyPart.cs index 9940a8a0b6..341af694c5 100644 --- a/Content.Shared/GameObjects/Components/Body/Part/IBodyPart.cs +++ b/Content.Shared/GameObjects/Components/Body/Part/IBodyPart.cs @@ -18,11 +18,6 @@ namespace Content.Shared.GameObjects.Components.Body.Part /// BodyPartType PartType { get; } - /// - /// Plural version of this name. - /// - public string Plural { get; } - /// /// Determines many things: how many mechanisms can be fit inside this /// , whether a body can fit through tiny crevices, diff --git a/Content.Shared/GameObjects/Components/Body/Part/SharedBodyPartComponent.cs b/Content.Shared/GameObjects/Components/Body/Part/SharedBodyPartComponent.cs index 0b6c4a3504..66dc88e4cd 100644 --- a/Content.Shared/GameObjects/Components/Body/Part/SharedBodyPartComponent.cs +++ b/Content.Shared/GameObjects/Components/Body/Part/SharedBodyPartComponent.cs @@ -56,9 +56,6 @@ namespace Content.Shared.GameObjects.Components.Body.Part } [ViewVariables] public BodyPartType PartType { get; private set; } - - [ViewVariables] public string Plural { get; private set; } = string.Empty; - [ViewVariables] public int Size { get; private set; } [ViewVariables] public int SizeUsed { get; private set; } @@ -128,8 +125,6 @@ namespace Content.Shared.GameObjects.Components.Body.Part serializer.DataField(this, b => b.PartType, "partType", BodyPartType.Other); - serializer.DataField(this, b => b.Plural, "plural", string.Empty); - serializer.DataField(this, b => b.Size, "size", 1); serializer.DataField(this, b => b.Compatibility, "compatibility", BodyPartCompatibility.Universal); diff --git a/Resources/Prototypes/Body/Parts/humanoid_parts.yml b/Resources/Prototypes/Body/Parts/humanoid_parts.yml index eda82f12f1..0a520b9b68 100644 --- a/Resources/Prototypes/Body/Parts/humanoid_parts.yml +++ b/Resources/Prototypes/Body/Parts/humanoid_parts.yml @@ -16,7 +16,6 @@ sprite: Mobs/Species/Human/parts.rsi state: "torso_m" - type: BodyPart - plural: "human torsos" partType: Torso size: 14 compatibility: Biological @@ -47,7 +46,6 @@ sprite: Mobs/Species/Human/parts.rsi state: "head_m" - type: BodyPart - plural: "human heads" partType: Head size: 7 compatibility: Biological @@ -75,7 +73,6 @@ sprite: Mobs/Species/Human/parts.rsi state: "l_arm" - type: BodyPart - plural: "left human arms" partType: Arm size: 5 compatibility: Biological @@ -102,7 +99,6 @@ sprite: Mobs/Species/Human/parts.rsi state: "r_arm" - type: BodyPart - plural: "right human arms" partType: Arm size: 5 compatibility: Biological @@ -129,7 +125,6 @@ sprite: Mobs/Species/Human/parts.rsi state: "l_hand" - type: BodyPart - plural: "left human hands" partType: Hand size: 3 compatibility: Biological @@ -155,7 +150,6 @@ sprite: Mobs/Species/Human/parts.rsi state: "r_hand" - type: BodyPart - plural: "right human hands" partType: Hand durability: 30 destroyThreshold: -60 @@ -183,7 +177,6 @@ sprite: Mobs/Species/Human/parts.rsi state: "l_leg" - type: BodyPart - plural: "left human legs" partType: Leg size: 6 compatibility: Biological @@ -212,7 +205,6 @@ sprite: Mobs/Species/Human/parts.rsi state: "r_leg" - type: BodyPart - plural: "right human legs" partType: Leg durability: 45 destroyThreshold: -90 @@ -243,7 +235,6 @@ sprite: Mobs/Species/Human/parts.rsi state: "l_foot" - type: BodyPart - plural: "left human feet" partType: Foot size: 2 compatibility: Biological @@ -268,7 +259,6 @@ sprite: Mobs/Species/Human/parts.rsi state: "r_foot" - type: BodyPart - plural: "right human feet" partType: Foot size: 2 compatibility: Biological