mirror of
https://github.com/magefree/mage.git
synced 2025-12-25 04:52:07 -08:00
* Some fixes to some Battleebond cards.
This commit is contained in:
parent
d743864bbd
commit
66cc29325c
21 changed files with 57 additions and 44 deletions
|
|
@ -25,7 +25,6 @@
|
|||
* authors and should not be interpreted as representing official policies, either expressed
|
||||
* or implied, of BetaSteward_at_googlemail.com.
|
||||
*/
|
||||
|
||||
package mage.abilities.common;
|
||||
|
||||
import mage.abilities.TriggeredAbilityImpl;
|
||||
|
|
@ -65,6 +64,6 @@ public class WinsCoinFlipTriggeredAbility extends TriggeredAbilityImpl {
|
|||
|
||||
@Override
|
||||
public String getRule() {
|
||||
return "Whenever a player wins a coin flip," + super.getRule();
|
||||
return "Whenever a player wins a coin flip, " + super.getRule();
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -115,7 +115,7 @@ public class DrawCardTargetEffect extends OneShotEffect {
|
|||
} else {
|
||||
target = mode.getTargets().get(0);
|
||||
}
|
||||
sb.append("Target ").append(target.getTargetName());
|
||||
sb.append("target ").append(target.getTargetName());
|
||||
} else {
|
||||
sb.append("that player");
|
||||
}
|
||||
|
|
|
|||
|
|
@ -117,7 +117,7 @@ class PartnersWithSearchEffect extends OneShotEffect {
|
|||
private final String partnerName;
|
||||
|
||||
public PartnersWithSearchEffect(String partnerName) {
|
||||
super(Outcome.Detriment);
|
||||
super(Outcome.DrawCard);
|
||||
this.partnerName = partnerName;
|
||||
this.staticText = "";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue