mirror of
https://github.com/WWhiteDreamProject/wwdpublic.git
synced 2026-04-24 00:58:01 +03:00
14 lines
261 B
C#
14 lines
261 B
C#
namespace Content.Server._White.Melee.Crit;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class CritComponent : Component
|
|
{
|
|
[DataField]
|
|
public float CritChance = 0.2f;
|
|
|
|
[DataField]
|
|
public float CritMultiplier = 2f;
|
|
|
|
public float? RealChance;
|
|
}
|