forked from External/mage
[ACR] Implement The Capitoline Triad (#12510)
* Implement-ACR-The-Capitoline-Triad --------- Co-authored-by: Grath <1895280+Grath@users.noreply.github.com>
This commit is contained in:
parent
0bba44b54f
commit
f42fc0f388
5 changed files with 295 additions and 0 deletions
|
|
@ -0,0 +1,32 @@
|
|||
package mage.game.command.emblems;
|
||||
|
||||
import mage.abilities.Ability;
|
||||
import mage.abilities.common.SimpleStaticAbility;
|
||||
import mage.abilities.effects.common.continuous.*;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.Zone;
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.game.command.Emblem;
|
||||
|
||||
/*
|
||||
* @author grimreap124
|
||||
*/
|
||||
public final class TheCapitolineTriadEmblem extends Emblem {
|
||||
|
||||
public TheCapitolineTriadEmblem() {
|
||||
super("Emblem Capitoline Triad");
|
||||
// You get an emblem with "Creatures you control have base power and toughness 9/9."
|
||||
Ability ability = new SimpleStaticAbility(Zone.COMMAND,
|
||||
new SetBasePowerToughnessAllEffect(9, 9, Duration.EndOfGame, StaticFilters.FILTER_PERMANENT_CREATURES_CONTROLLED).setText("Creatures you control have base power and toughness 9/9."));
|
||||
getAbilities().add(ability);
|
||||
}
|
||||
|
||||
private TheCapitolineTriadEmblem(final TheCapitolineTriadEmblem card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public TheCapitolineTriadEmblem copy() {
|
||||
return new TheCapitolineTriadEmblem(this);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue