mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 13:02:06 -08:00
[MID] Implemented Arrogant Outlaw
This commit is contained in:
parent
c3531dbb2c
commit
b11c8b5c70
9 changed files with 76 additions and 53 deletions
|
|
@ -9,7 +9,6 @@ import mage.game.Game;
|
|||
* @author JayDi85
|
||||
*/
|
||||
public enum OpponentsLostLifeCondition implements Condition {
|
||||
|
||||
instance;
|
||||
|
||||
@Override
|
||||
|
|
@ -19,6 +18,6 @@ public enum OpponentsLostLifeCondition implements Condition {
|
|||
|
||||
@Override
|
||||
public String toString() {
|
||||
return "opponents lost life";
|
||||
return "an opponent lost life this turn";
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@ import mage.game.Game;
|
|||
/**
|
||||
* @author JayDi85
|
||||
*/
|
||||
public enum SpectacleHint implements Hint {
|
||||
public enum OpponentsLostLifeHint implements Hint {
|
||||
|
||||
instance;
|
||||
private static final ConditionHint hint = new ConditionHint(OpponentsLostLifeCondition.instance, "Opponents lost life this turn");
|
||||
|
|
@ -3,7 +3,7 @@ package mage.abilities.keyword;
|
|||
import mage.abilities.SpellAbility;
|
||||
import mage.abilities.costs.mana.ManaCost;
|
||||
import mage.abilities.dynamicvalue.common.OpponentsLostLifeCount;
|
||||
import mage.abilities.hint.common.SpectacleHint;
|
||||
import mage.abilities.hint.common.OpponentsLostLifeHint;
|
||||
import mage.cards.Card;
|
||||
import mage.constants.SpellAbilityType;
|
||||
import mage.constants.Zone;
|
||||
|
|
@ -36,7 +36,7 @@ public class SpectacleAbility extends SpellAbility {
|
|||
this.setRuleAtTheTop(true);
|
||||
this.rule = "Spectacle " + spectacleCosts.getText()
|
||||
+ " <i>(You may cast this spell for its spectacle cost rather than its mana cost if an opponent lost life this turn.)</i>";
|
||||
this.addHint(SpectacleHint.instance);
|
||||
this.addHint(OpponentsLostLifeHint.instance);
|
||||
}
|
||||
|
||||
public SpectacleAbility(final SpectacleAbility ability) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue