[NCC] Fix Spellbinding Soprano missing P/T definition

This commit is contained in:
Alex W. Jackson 2022-04-20 12:21:06 -04:00
parent 0b50972e13
commit a0f312a05d

View file

@ -32,6 +32,8 @@ public final class SpellbindingSoprano extends CardImpl {
this.subtype.add(SubType.HUMAN);
this.subtype.add(SubType.BARD);
this.power = new MageInt(2);
this.toughness = new MageInt(2);
// Whenever Spellbinding Soprano attacks, instant and sorcery spells you cast this turn cost {1} less to cast.
this.addAbility(new AttacksTriggeredAbility(new SpellsCostReductionControllerEffect(filter, 1)));