mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
fix
This commit is contained in:
parent
82712c869f
commit
d796633e49
2 changed files with 1 additions and 2 deletions
|
@ -49,7 +49,6 @@ public class InsectileAberration extends CardImpl<InsectileAberration> {
|
|||
|
||||
// this card is the second face of double-faced card
|
||||
this.nightCard = true;
|
||||
this.canTransform = true;
|
||||
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(2);
|
||||
|
|
|
@ -61,7 +61,7 @@ public class StromkirkNoble extends CardImpl<StromkirkNoble> {
|
|||
this.toughness = new MageInt(1);
|
||||
|
||||
// Stromkirk Noble can't be blocked by Humans.
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new CantBeBlockedByOneEffect(2)));
|
||||
this.addAbility(new SimpleStaticAbility(Zone.BATTLEFIELD, new StromkirkEffect()));
|
||||
// Whenever Stromkirk Noble deals combat damage to a player, put a +1/+1 counter on it.
|
||||
this.addAbility(new DealsCombatDamageToAPlayerTriggeredAbility(new AddCountersSourceEffect(CounterType.P1P1.createInstance()), false));
|
||||
|
||||
|
|
Loading…
Reference in a new issue