Skip to content

Commit

Permalink
tweak(traits): adjust thresholds for toxin/airloss
Browse files Browse the repository at this point in the history
  • Loading branch information
angelofallars committed Aug 6, 2024
1 parent e83bd60 commit 744e2dc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Content.Server/Traits/Assorted/SelfAwareComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ public sealed partial class SelfAwareComponent : Component
// These are calculated as a percentage of the entity's critical threshold.
// </summary>
public List<FixedPoint2> Thresholds = new()
{ FixedPoint2.New(0.10), FixedPoint2.New(0.25), FixedPoint2.New(0.50), FixedPoint2.New(0.75) };
{ FixedPoint2.New(0.10), FixedPoint2.New(0.25), FixedPoint2.New(0.40), FixedPoint2.New(0.60) };
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ health-examinable-selfaware-type-Caustic = [color=yellowgreen]Caustic[/color] bu
health-examinable-selfaware-group-Toxin-10 = [color=green]You feel sick.[/color]
health-examinable-selfaware-group-Toxin-25 = [color=green]You feel nauseated.[/color]
health-examinable-selfaware-group-Toxin-50 = [color=green]You feel very unwell![/color]
health-examinable-selfaware-group-Toxin-75 = [color=green]You feel gravely ill![/color]
health-examinable-selfaware-group-Toxin-40 = [color=green]You feel very unwell![/color]
health-examinable-selfaware-group-Toxin-60 = [color=green]You feel gravely ill![/color]
health-examinable-selfaware-group-Airloss-10 = [color=lightblue]You feel lightheaded.[/color]
health-examinable-selfaware-group-Airloss-25 = [color=lightblue]You feel faint and woozy.[/color]
health-examinable-selfaware-group-Airloss-50 = [color=lightblue]You're struggling to breathe![/color]
health-examinable-selfaware-group-Airloss-75 = [color=lightblue]You're suffocating badly![/color]
health-examinable-selfaware-group-Airloss-40 = [color=lightblue]You're struggling to breathe![/color]
health-examinable-selfaware-group-Airloss-60 = [color=lightblue]You're suffocating badly![/color]

0 comments on commit 744e2dc

Please sign in to comment.