Minor changes

This commit is contained in:
Asriel Camora
2023-06-23 00:18:23 -07:00
parent 0de1faa112
commit c1caa46838
4 changed files with 3 additions and 15 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ public sealed record CharacterStats
public int Control { get; init; }
public int CP { get; init; }
public int Level { get; init; }
public bool HasRelic { get; init; }
public bool HasSplendorousBuff { get; init; }
public bool IsSpecialist { get; init; }
public int CLvl { get; init; }
}
+1 -1
View File
@@ -224,7 +224,7 @@ public class Simulator
var conditionModifier = Condition switch
{
Condition.Poor => 0.50f,
Condition.Good => Input.Stats.HasRelic ? 1.75f : 1.50f,
Condition.Good => Input.Stats.HasSplendorousBuff ? 1.75f : 1.50f,
Condition.Excellent => 4.00f,
_ => 1.00f,
};