Tokens and command objects reworked (part 2 of 2, tokens/emblems)

This commit is contained in:
Oleg Agafonov 2023-05-08 02:18:42 +04:00
parent 5f55c7c667
commit f2d93f224f
591 changed files with 1368 additions and 4425 deletions

View file

@ -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);
}
}