[WOE] Implement Become Brutes

This commit is contained in:
theelk801 2023-08-23 09:43:00 -04:00
parent 17a31e2ad6
commit 484283e44c
2 changed files with 39 additions and 0 deletions

View file

@ -0,0 +1,38 @@
package mage.cards.b;
import mage.abilities.effects.common.CreateRoleAttachedTargetEffect;
import mage.abilities.effects.common.continuous.GainAbilityTargetEffect;
import mage.abilities.keyword.HasteAbility;
import mage.cards.CardImpl;
import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.RoleType;
import mage.target.common.TargetOpponentsCreaturePermanent;
import java.util.UUID;
/**
* @author TheElk801
*/
public final class BecomeBrutes extends CardImpl {
public BecomeBrutes(UUID ownerId, CardSetInfo setInfo) {
super(ownerId, setInfo, new CardType[]{CardType.SORCERY}, "{1}{R}");
// One or two target creatures each gain haste until end of turn. For each of those creatures, create a Monster Role token attached to it.
this.getSpellAbility().addEffect(new GainAbilityTargetEffect(HasteAbility.getInstance())
.setText("one or two target creatures each gain haste until end of turn"));
this.getSpellAbility().addEffect(new CreateRoleAttachedTargetEffect(RoleType.MONSTER)
.setText("for each of those creatures, create a Monster Role token attached to it"));
this.getSpellAbility().addTarget(new TargetOpponentsCreaturePermanent(1, 2));
}
private BecomeBrutes(final BecomeBrutes card) {
super(card);
}
@Override
public BecomeBrutes copy() {
return new BecomeBrutes(this);
}
}

View file

@ -30,6 +30,7 @@ public final class WildsOfEldraine extends ExpansionSet {
cards.add(new SetCardInfo("Asinine Antics", 42, Rarity.MYTHIC, mage.cards.a.AsinineAntics.class));
cards.add(new SetCardInfo("Back for Seconds", 80, Rarity.UNCOMMON, mage.cards.b.BackForSeconds.class));
cards.add(new SetCardInfo("Beanstalk Wurm", 161, Rarity.COMMON, mage.cards.b.BeanstalkWurm.class));
cards.add(new SetCardInfo("Become Brutes", 317, Rarity.UNCOMMON, mage.cards.b.BecomeBrutes.class));
cards.add(new SetCardInfo("Belligerent of the Ball", 120, Rarity.UNCOMMON, mage.cards.b.BelligerentOfTheBall.class));
cards.add(new SetCardInfo("Beluna Grandsquall", 220, Rarity.MYTHIC, mage.cards.b.BelunaGrandsquall.class));
cards.add(new SetCardInfo("Beseech the Mirror", 82, Rarity.MYTHIC, mage.cards.b.BeseechTheMirror.class));