mirror of
https://github.com/correl/mage.git
synced 2024-11-15 11:09:30 +00:00
* Goblin Rabblemaster - Fixed that its attack boost value was not fixed until end of turn as the attack was declared.
This commit is contained in:
parent
2fdaeffb32
commit
cb0f9c9e14
1 changed files with 1 additions and 1 deletions
|
@ -86,7 +86,7 @@ public class GoblinRabblemaster extends CardImpl {
|
|||
this.addAbility(new BeginningOfCombatTriggeredAbility(new CreateTokenEffect(new GoblinToken()), TargetController.YOU, false));
|
||||
|
||||
// When Goblin Rabblemaster attacks, it gets +1/+0 until end of turn for each other attacking Goblin.
|
||||
this.addAbility(new AttacksTriggeredAbility(new BoostSourceEffect(new PermanentsOnBattlefieldCount(attackingFilter), new StaticValue(0), Duration.EndOfTurn), false));
|
||||
this.addAbility(new AttacksTriggeredAbility(new BoostSourceEffect(new PermanentsOnBattlefieldCount(attackingFilter), new StaticValue(0), Duration.EndOfTurn, true), false));
|
||||
}
|
||||
|
||||
public GoblinRabblemaster(final GoblinRabblemaster card) {
|
||||
|
|
Loading…
Reference in a new issue