some more fixes

This commit is contained in:
Evan Kranzler 2018-04-15 14:13:44 -04:00
parent ef33472ee5
commit 41c9b08107
2 changed files with 3 additions and 4 deletions

View file

@ -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) {

View file

@ -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());
}