diff --git a/Assets/Scripts/EffectSO.cs b/Assets/Scripts/EffectSO.cs index cd978c5..f50bce1 100644 --- a/Assets/Scripts/EffectSO.cs +++ b/Assets/Scripts/EffectSO.cs @@ -6,16 +6,16 @@ public class EffectSO : ScriptableObject /// /// Additive change applied before multiplicative scaling. /// - public long Base { get; private set; } + public long Base; /// /// Multiplicative scaling in units of hundredth of a percent. /// E.g., 625 permyriad is 6.25%. /// - public long Permyriad { get; private set; } + public long Permyriad; /// /// Additive change applied after multiplicative scaling. /// - public long Flat { get; private set; } + public long Flat; /// /// Create a new attribute effect instance.