- The AI can now use Tyrant of Discord.

This commit is contained in:
Sloth
2012-05-09 12:16:02 +00:00
parent 0756d78e5a
commit 3ae672ba66
2 changed files with 4 additions and 4 deletions

View File

@@ -8,7 +8,7 @@ SVar:TrigRepeat:AB$ Repeat | Cost$ 0 | ValidTgts$ Opponent | TgtPrompt$ Select t
SVar:DBClear:DB$ Cleanup | ClearRemembered$ True | SubAbility$ DBSac SVar:DBClear:DB$ Cleanup | ClearRemembered$ True | SubAbility$ DBSac
SVar:DBSac:DB$Sacrifice | Defined$ Targeted | SacValid$ Permanent | Amount$ 1 | RememberSacrificed$ True | Random$ True SVar:DBSac:DB$Sacrifice | Defined$ Targeted | SacValid$ Permanent | Amount$ 1 | RememberSacrificed$ True | Random$ True
SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True SVar:DBCleanup:DB$ Cleanup | ClearRemembered$ True
SVar:RemAIDeck:True SVar:PlayMain1:TRUE
SVar:Rarity:Rare SVar:Rarity:Rare
SVar:Picture:http://www.wizards.com/global/images/magic/general/tyrant_of_discord.jpg SVar:Picture:http://www.wizards.com/global/images/magic/general/tyrant_of_discord.jpg
SetInfo:AVR|Rare|http://magiccards.info/scans/en/avr/162.jpg SetInfo:AVR|Rare|http://magiccards.info/scans/en/avr/162.jpg

View File

@@ -67,7 +67,7 @@ public final class AbilityFactoryRepeat {
@Override @Override
public boolean doTrigger(final boolean mandatory) { public boolean doTrigger(final boolean mandatory) {
return true; return AbilityFactoryRepeat.repeatCanPlayAI(this) || mandatory;
} }
@Override @Override
@@ -105,7 +105,7 @@ public final class AbilityFactoryRepeat {
@Override @Override
public boolean doTrigger(final boolean mandatory) { public boolean doTrigger(final boolean mandatory) {
return true; return AbilityFactoryRepeat.repeatCanPlayAI(this) || mandatory;
} }
@Override @Override
@@ -148,7 +148,7 @@ public final class AbilityFactoryRepeat {
@Override @Override
public boolean doTrigger(final boolean mandatory) { public boolean doTrigger(final boolean mandatory) {
return true; return AbilityFactoryRepeat.repeatCanPlayAI(this) || mandatory;
} }
@Override @Override