Skip to content

Commit

Permalink
tweak limbs health are lower now
Browse files Browse the repository at this point in the history
Low numbers made dropping limbs instead of destructing them on body's, so surgery would become even awesome. Though, when limb is dropped from body, it have barely 1-3 hits to be destroyed completely.
  • Loading branch information
TokenStyle committed Nov 23, 2024
1 parent d9aef8e commit 367cfae
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Content.Shared/Body/Part/BodyPartComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,11 @@ public sealed partial class BodyPartComponent : Component, ISurgeryToolComponent
[DataField, AutoNetworkedField]
public Dictionary<TargetIntegrity, float> IntegrityThresholds = new()
{
{ TargetIntegrity.CriticallyWounded, 90 },
{ TargetIntegrity.HeavilyWounded, 75 },
{ TargetIntegrity.ModeratelyWounded, 60 },
{ TargetIntegrity.SomewhatWounded, 40},
{ TargetIntegrity.LightlyWounded, 20 },
{ TargetIntegrity.CriticallyWounded, 70 }, // Corvax-Next-Surgery flavor damage
{ TargetIntegrity.HeavilyWounded, 60 }, // Corvax-Next-Surgery flavor damage
{ TargetIntegrity.ModeratelyWounded, 45 }, // Corvax-Next-Surgery flavor damage
{ TargetIntegrity.SomewhatWounded, 30}, // Corvax-Next-Surgery flavor damage
{ TargetIntegrity.LightlyWounded, 15 }, // Corvax-Next-Surgery flavor damage
{ TargetIntegrity.Healthy, 10 },
};
// end-_CorvaxNext: surgery
Expand Down

0 comments on commit 367cfae

Please sign in to comment.