mirror of
https://github.com/magefree/mage.git
synced 2025-12-23 03:51:58 -08:00
Fix Bombadil's Song to only allow your creatures to be targeted.
This commit is contained in:
parent
f2378a5b3d
commit
ddd6333d70
1 changed files with 2 additions and 2 deletions
|
|
@ -7,7 +7,7 @@ import mage.abilities.keyword.HexproofAbility;
|
|||
import mage.cards.CardImpl;
|
||||
import mage.cards.CardSetInfo;
|
||||
import mage.constants.CardType;
|
||||
import mage.target.common.TargetCreaturePermanent;
|
||||
import mage.target.common.TargetControlledCreaturePermanent;
|
||||
|
||||
import java.util.UUID;
|
||||
|
||||
|
|
@ -25,7 +25,7 @@ public final class BombadilsSong extends CardImpl {
|
|||
this.getSpellAbility().addEffect(new GainAbilityTargetEffect(HexproofAbility.getInstance())
|
||||
.setText("and gains hexproof until the end of turn"));
|
||||
this.getSpellAbility().addEffect(new TheRingTemptsYouEffect());
|
||||
this.getSpellAbility().addTarget(new TargetCreaturePermanent());
|
||||
this.getSpellAbility().addTarget(new TargetControlledCreaturePermanent());
|
||||
}
|
||||
|
||||
private BombadilsSong(final BombadilsSong card) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue