- JOU: Added Silence the Believers

This commit is contained in:
swordshine
2014-04-17 11:11:53 +00:00
parent 5159250da6
commit 277ba65f2d
2 changed files with 4 additions and 3 deletions

View File

@@ -5566,11 +5566,12 @@ public class Card extends GameEntity implements Comparable<Card> {
for (final SpellAbility sa : source.getCharacteristics().getSpellAbility()) { for (final SpellAbility sa : source.getCharacteristics().getSpellAbility()) {
final List<Card> list = AbilityUtils.getDefinedCards(source, "Targeted", sa); final List<Card> list = AbilityUtils.getDefinedCards(source, "Targeted", sa);
for (final Card c : list) { for (final Card c : list) {
if (!this.equipping.contains(c) && !c.equals(this.enchanting)) { if (this.equipping.contains(c) || c.equals(this.enchanting)) { // handle multiple targets
return false; return true;
} }
} }
} }
return false;
} }
} else { } else {
if (((this.enchanting == null) || !this.enchanting.isValid(restriction, sourceController, source)) if (((this.enchanting == null) || !this.enchanting.isValid(restriction, sourceController, source))

View File

@@ -1,6 +1,6 @@
Name:Tribute to the Wild Name:Tribute to the Wild
ManaCost:1 G ManaCost:1 G
Types:Instant Types:Instant
A:SP$ Sacrifice | Cost$ 1 G | Defined$ Opponent | SacValid$ Artifact,Enchantment | SacMessage$ artifact or enchantment | SpellDescription$ Each opponent sacrifices an artifact or enchantment. A:SP$ Sacrifice | Cost$ 1 G | Defined$ Player.Opponent | SacValid$ Artifact,Enchantment | SacMessage$ artifact or enchantment | SpellDescription$ Each opponent sacrifices an artifact or enchantment.
SVar:Picture:http://www.wizards.com/global/images/magic/general/tribute_to_the_wild.jpg SVar:Picture:http://www.wizards.com/global/images/magic/general/tribute_to_the_wild.jpg
Oracle:Each opponent sacrifices an artifact or enchantment. Oracle:Each opponent sacrifices an artifact or enchantment.