forked from External/mage
47 lines
1.6 KiB
Java
47 lines
1.6 KiB
Java
|
|
package mage.cards.a;
|
|
|
|
import java.util.UUID;
|
|
import mage.MageInt;
|
|
import mage.abilities.Ability;
|
|
import mage.abilities.common.BlocksOrBecomesBlockedTriggeredAbility;
|
|
import mage.abilities.effects.Effect;
|
|
import mage.abilities.effects.common.DamageTargetControllerEffect;
|
|
import mage.abilities.effects.common.DamageTargetEffect;
|
|
import mage.cards.CardImpl;
|
|
import mage.cards.CardSetInfo;
|
|
import mage.constants.CardType;
|
|
import mage.constants.SubType;
|
|
import mage.filter.StaticFilters;
|
|
|
|
/**
|
|
*
|
|
* @author fireshoes
|
|
*/
|
|
public final class AssembledAlphas extends CardImpl {
|
|
|
|
public AssembledAlphas(UUID ownerId, CardSetInfo setInfo) {
|
|
super(ownerId, setInfo, new CardType[]{CardType.CREATURE}, "{5}{R}");
|
|
this.subtype.add(SubType.WOLF);
|
|
this.power = new MageInt(5);
|
|
this.toughness = new MageInt(5);
|
|
|
|
// Whenever Assembled Alphas blocks or becomes blocked by a creature, Assembled Alphas deals 3 damage to that creature and 3 damage to that creature's controller.
|
|
Ability ability = new BlocksOrBecomesBlockedTriggeredAbility(
|
|
new DamageTargetEffect(3, true, "that creature"), StaticFilters.FILTER_PERMANENT_CREATURE, false, null, true);
|
|
|
|
Effect effect = new DamageTargetControllerEffect(3);
|
|
effect.setText("and 3 damage to that creature's controller");
|
|
ability.addEffect(effect);
|
|
this.addAbility(ability);
|
|
}
|
|
|
|
public AssembledAlphas(final AssembledAlphas card) {
|
|
super(card);
|
|
}
|
|
|
|
@Override
|
|
public AssembledAlphas copy() {
|
|
return new AssembledAlphas(this);
|
|
}
|
|
}
|