mirror of
https://github.com/correl/mage.git
synced 2025-01-12 11:08:01 +00:00
* Added Celestial Convergence and some changes to game draw handling.
This commit is contained in:
parent
e284922017
commit
5d2c210d36
2 changed files with 12 additions and 2 deletions
|
@ -58,8 +58,8 @@ public class CelestialConvergence extends CardImpl {
|
|||
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{2}{W}{W}");
|
||||
|
||||
// Celestial Convergence enters the battlefield with seven omen counters on it.
|
||||
Effect effect = new AddCountersSourceEffect(new Counter("omen", 2));
|
||||
this.addAbility(new EntersBattlefieldAbility(effect, "with 2 omen counters"));
|
||||
Effect effect = new AddCountersSourceEffect(new Counter("omen", 7));
|
||||
this.addAbility(new EntersBattlefieldAbility(effect, "with seven omen counters"));
|
||||
|
||||
// At the beginning of your upkeep, remove an omen counter from Celestial Convergence. If there are no omen counters on Celestial Convergence, the player with the highest life total wins the game. If two or more players are tied for highest life total, the game is a draw.
|
||||
Ability ability = new BeginningOfUpkeepTriggeredAbility(
|
||||
|
|
|
@ -1242,4 +1242,14 @@ public class PlayerStub implements Player {
|
|||
return "";
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean hasDrew() {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void drew(Game game) {
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue