mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
- disabled AI from using Sasaya, Orochi Ascendant for now. Repetition needs to be rectified first. It leads to infinite games for users. #8611
This commit is contained in:
parent
5fe1b9a46c
commit
0c81ce9801
1 changed files with 3 additions and 0 deletions
|
@ -27,6 +27,7 @@ import mage.players.Player;
|
|||
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
import mage.abilities.effects.Effect;
|
||||
import mage.choices.Choice;
|
||||
import mage.choices.ChoiceColor;
|
||||
|
||||
|
@ -48,6 +49,8 @@ public final class SasayaOrochiAscendant extends CardImpl {
|
|||
this.flipCardName = "Sasaya's Essence";
|
||||
|
||||
// Reveal your hand: If you have seven or more land cards in your hand, flip Sasaya, Orochi Ascendant.
|
||||
Effect effect = new SasayaOrochiAscendantFlipEffect();
|
||||
effect.setOutcome(Outcome.AIDontUseIt); // repetition issues need to be fixed for the AI to use this effectively
|
||||
this.addAbility(new SimpleActivatedAbility(Zone.BATTLEFIELD, new SasayaOrochiAscendantFlipEffect(), new RevealHandSourceControllerCost()));
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue