mirror of
https://github.com/correl/mage.git
synced 2025-03-07 20:53:18 -10:00
some more fixes
This commit is contained in:
parent
ef33472ee5
commit
41c9b08107
2 changed files with 3 additions and 4 deletions
|
@ -48,13 +48,12 @@ import java.util.UUID;
|
|||
public class DarkBargain extends CardImpl {
|
||||
|
||||
public DarkBargain(UUID ownerId, CardSetInfo setInfo) {
|
||||
super(ownerId,setInfo,new CardType[]{CardType.INSTANT},"{3}{B}");
|
||||
|
||||
super(ownerId, setInfo, new CardType[]{CardType.INSTANT}, "{3}{B}");
|
||||
|
||||
// Look at the top three cards of your library. Put two of them into your hand and the rest into your graveyard.
|
||||
// Dark Bargain deals 2 damage to you.
|
||||
this.getSpellAbility().addEffect(new DarkBargainEffect());
|
||||
this.getSpellAbility().addEffect(new DamageControllerEffect(2)());
|
||||
this.getSpellAbility().addEffect(new DamageControllerEffect(2));
|
||||
}
|
||||
|
||||
public DarkBargain(final DarkBargain card) {
|
||||
|
|
|
@ -137,7 +137,7 @@ public class GameIsADrawTest extends CardTestPlayerBase {
|
|||
|
||||
Assert.assertTrue("Game has ended.", currentGame.hasEnded());
|
||||
|
||||
Assert.assertTrue("Inifinite loop detected, game has be de a draw.", currentGame.isADraw());
|
||||
Assert.assertTrue("Infinite loop detected, game has be de a draw.", currentGame.isADraw());
|
||||
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue