Skip to content

Commit

Permalink
Update PotentialPsionicComponent.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
VMSolidus committed May 15, 2024
1 parent 0d37ceb commit 324082a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Content.Server/Psionics/PotentialPsionicComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,15 @@ namespace Content.Server.Psionics
[RegisterComponent]
public sealed partial class PotentialPsionicComponent : Component
{
/// <summary>
/// The base chance of an entity rolling psychic powers, which is increased by other modifiers such as glimmer.
/// </summary>
/// <remarks>
/// I have increased this to 10% up from its original value of 2%, because I estimate that most people won't take the Latent Psychic trait
/// Simply because they might not even know it exists
/// </remarks>
[DataField("chance")]
public float Chance = 0.04f;
public float Chance = 0.10f;

/// <summary>
/// YORO (you only reroll once)
Expand Down

0 comments on commit 324082a

Please sign in to comment.