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 AdvancedTouch : BaseAction
public override int Level => 84;
public override uint ActionId => 100411;
public override int CPCost => Simulation.IsPreviousAction(ActionType.StandardTouch) && Simulation.IsPreviousAction(ActionType.BasicTouch, 2) ? 18 : 46;
public override int CPCost => Simulation.ActionStates.TouchComboIdx == 2 ? 18 : 46;
public override float Efficiency => 1.50f;
public override bool IncreasesQuality => true;
}