forked from External/mage
Tokens and command objects reworked (part 2 of 2, tokens/emblems)
This commit is contained in:
parent
5f55c7c667
commit
f2d93f224f
591 changed files with 1368 additions and 4425 deletions
|
|
@ -15,8 +15,7 @@ public final class SaheeliFiligreeMasterEmblem extends Emblem {
|
|||
|
||||
// −4: You get an emblem with "Artifact creatures you control get +1/+1" and "Artifact spells you cast cost {1} less to cast."
|
||||
public SaheeliFiligreeMasterEmblem() {
|
||||
this.setName("Emblem Saheeli");
|
||||
this.setExpansionSetCodeForImage("BRO");
|
||||
super("Emblem Saheeli");
|
||||
this.getAbilities().add(new SimpleStaticAbility(
|
||||
Zone.COMMAND,
|
||||
new BoostControlledEffect(
|
||||
|
|
@ -31,4 +30,13 @@ public final class SaheeliFiligreeMasterEmblem extends Emblem {
|
|||
).setText("Artifact spells you cast cost {1} less to cast")
|
||||
));
|
||||
}
|
||||
|
||||
private SaheeliFiligreeMasterEmblem(final SaheeliFiligreeMasterEmblem card) {
|
||||
super(card);
|
||||
}
|
||||
|
||||
@Override
|
||||
public SaheeliFiligreeMasterEmblem copy() {
|
||||
return new SaheeliFiligreeMasterEmblem(this);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue