mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 12:18:00 +00:00
- JOU: Added Silence the Believers
This commit is contained in:
@@ -5566,12 +5566,13 @@ 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 true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
} else {
|
} else {
|
||||||
if (((this.enchanting == null) || !this.enchanting.isValid(restriction, sourceController, source))
|
if (((this.enchanting == null) || !this.enchanting.isValid(restriction, sourceController, source))
|
||||||
&& (this.equipping.isEmpty() || !this.equipping.get(0).isValid(restriction, sourceController, source))
|
&& (this.equipping.isEmpty() || !this.equipping.get(0).isValid(restriction, sourceController, source))
|
||||||
|
|||||||
@@ -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.
|
||||||
Reference in New Issue
Block a user