mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08:00
[BRO] Implement Saheeli, Filigree Master (#9735)
* [BRO] Implement Saheeli, Filigree Master * Add some comment text to Saheeli, Filigree Master's emblem
This commit is contained in:
parent
71a718ee72
commit
63c1325f37
3 changed files with 131 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.BoostControlledEffect;
|
||||
import mage.abilities.effects.common.cost.SpellsCostReductionControllerEffect;
|
||||
import mage.constants.Duration;
|
||||
import mage.constants.Zone;
|
||||
import mage.filter.StaticFilters;
|
||||
import mage.game.command.Emblem;
|
||||
|
||||
/**
|
||||
* @author PurpleCrowbar
|
||||
*/
|
||||
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");
|
||||
Ability ability = new SimpleStaticAbility(
|
||||
Zone.COMMAND,
|
||||
new BoostControlledEffect(
|
||||
1, 1, Duration.EndOfGame,
|
||||
StaticFilters.FILTER_PERMANENT_ARTIFACT_CREATURE
|
||||
).setText("Artifact creatures you control get +1/+1")
|
||||
);
|
||||
ability.addEffect(new SpellsCostReductionControllerEffect(StaticFilters.FILTER_CARD_ARTIFACT, 1)
|
||||
.setText("Artifact spells you cast cost {1} less to cast"));
|
||||
this.getAbilities().add(ability);
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue