mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-19 04:08:01 +00:00
- JOU: Added Silence the Believers
This commit is contained in:
@@ -5566,11 +5566,12 @@ public class Card extends GameEntity implements Comparable<Card> {
|
||||
for (final SpellAbility sa : source.getCharacteristics().getSpellAbility()) {
|
||||
final List<Card> list = AbilityUtils.getDefinedCards(source, "Targeted", sa);
|
||||
for (final Card c : list) {
|
||||
if (!this.equipping.contains(c) && !c.equals(this.enchanting)) {
|
||||
return false;
|
||||
if (this.equipping.contains(c) || c.equals(this.enchanting)) { // handle multiple targets
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
return false;
|
||||
}
|
||||
} else {
|
||||
if (((this.enchanting == null) || !this.enchanting.isValid(restriction, sourceController, source))
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
Name:Tribute to the Wild
|
||||
ManaCost:1 G
|
||||
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
|
||||
Oracle:Each opponent sacrifices an artifact or enchantment.
|
||||
Reference in New Issue
Block a user