This commit is contained in:
Alvin 2011-10-06 18:09:34 +09:00
parent 82712c869f
commit d796633e49
2 changed files with 1 additions and 2 deletions

View file

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

View file

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