Split CanUse into CouldUse & IsPossible
This commit is contained in:
@@ -12,7 +12,7 @@ internal sealed class PrudentTouch : BaseAction
|
||||
public override int CPCost(Simulator s) => 25;
|
||||
public override int Efficiency(Simulator s) => 100;
|
||||
|
||||
public override bool CanUse(Simulator s) =>
|
||||
public override bool CouldUse(Simulator s) =>
|
||||
!(s.HasEffect(EffectType.WasteNot) || s.HasEffect(EffectType.WasteNot2))
|
||||
&& base.CanUse(s);
|
||||
&& base.CouldUse(s);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user