mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-17 11:18:01 +00:00
- The AI can now use Tyrant of Discord.
This commit is contained in:
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user