mirror of
https://github.com/correl/mage.git
synced 2024-12-27 03:00:13 +00:00
- Fixed #8974
This commit is contained in:
parent
a3d4151eca
commit
295c6828b6
1 changed files with 5 additions and 4 deletions
|
@ -56,8 +56,8 @@ class BloodstoneGoblinTriggeredAbility extends TriggeredAbilityImpl {
|
|||
new GainAbilitySourceEffect(
|
||||
new MenaceAbility(false),
|
||||
Duration.EndOfTurn
|
||||
).setText("and gains menace until end of turn. " +
|
||||
"<i>(It can't be blocked except by two or more creatures.)</i>"));
|
||||
).setText("and gains menace until end of turn. "
|
||||
+ "<i>(It can't be blocked except by two or more creatures.)</i>"));
|
||||
}
|
||||
|
||||
BloodstoneGoblinTriggeredAbility(final BloodstoneGoblinTriggeredAbility ability) {
|
||||
|
@ -71,7 +71,8 @@ class BloodstoneGoblinTriggeredAbility extends TriggeredAbilityImpl {
|
|||
|
||||
@Override
|
||||
public boolean checkEventType(GameEvent event, Game game) {
|
||||
return event.getType() == GameEvent.EventType.SPELL_CAST;
|
||||
return event.getType() == GameEvent.EventType.SPELL_CAST
|
||||
&& event.getPlayerId() == this.controllerId;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -81,6 +82,6 @@ class BloodstoneGoblinTriggeredAbility extends TriggeredAbilityImpl {
|
|||
|
||||
@Override
|
||||
public String getTriggerPhrase() {
|
||||
return "Whenever you cast a spell, if that spell was kicked, " ;
|
||||
return "Whenever you cast a spell, if that spell was kicked, ";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue