Replace ActionHistory with persistent ActionStatuses

This commit is contained in:
Asriel Camora
2023-06-20 22:37:59 -07:00
parent cdd4f5923e
commit 47c9339d56
12 changed files with 66 additions and 38 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ internal sealed class StandardTouch : BaseAction
public override int Level => 18;
public override uint ActionId => 100004;
public override int CPCost => Simulation.IsPreviousAction(ActionType.BasicTouch) ? 18 : 32;
public override int CPCost => Simulation.ActionStates.TouchComboIdx == 1 ? 18 : 32;
public override float Efficiency => 1.25f;
public override bool IncreasesQuality => true;
}