mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 14:32:06 -08:00
Added Spelltithe Enforcer, Gauntlet of Might and Shivan Wumpus.
This commit is contained in:
parent
684e76e9bf
commit
6fe58db97d
9 changed files with 545 additions and 4 deletions
|
|
@ -36,7 +36,7 @@ public class AddManaToManaPoolTargetControllerEffect extends ManaEffect {
|
|||
super();
|
||||
this.mana = mana;
|
||||
this.emptyOnlyOnTurnsEnd = emptyOnTurnsEnd;
|
||||
this.staticText = (textManaPoolOwner.equals("his or her")?"that player adds":"add ") + mana.toString() + " to " + textManaPoolOwner + " mana pool";
|
||||
this.staticText = (textManaPoolOwner.equals("his or her")?"that player adds ":"add ") + mana.toString() + " to " + textManaPoolOwner + " mana pool";
|
||||
}
|
||||
|
||||
public AddManaToManaPoolTargetControllerEffect(final AddManaToManaPoolTargetControllerEffect effect) {
|
||||
|
|
|
|||
|
|
@ -97,7 +97,7 @@ public class PutOnLibrarySourceEffect extends OneShotEffect {
|
|||
sb.append(staticText);
|
||||
} else {
|
||||
// Put Champion of Stray Souls on top of your library from your graveyard
|
||||
sb.append("Put {this} on ");
|
||||
sb.append("put {this} on ");
|
||||
sb.append(onTop ? "top" : "the bottom").append(" of it's owner's library");
|
||||
}
|
||||
return sb.toString();
|
||||
|
|
|
|||
|
|
@ -98,7 +98,7 @@ public class SacrificeEffect extends OneShotEffect{
|
|||
}
|
||||
|
||||
for ( int idx = 0; idx < target.getTargets().size(); idx++) {
|
||||
Permanent permanent = game.getPermanent((UUID)target.getTargets().get(idx));
|
||||
Permanent permanent = game.getPermanent(target.getTargets().get(idx));
|
||||
|
||||
if ( permanent != null ) {
|
||||
abilityApplied |= permanent.sacrifice(source.getSourceId(), game);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue