mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
- small clarity fixes of Niv-Mizzet Reborn and Ugin, the Ineffable.
This commit is contained in:
parent
e77b21f4e9
commit
e307f92db2
2 changed files with 10 additions and 5 deletions
|
@ -113,9 +113,9 @@ class NivMizzetRebornEffect extends OneShotEffect {
|
|||
|
||||
NivMizzetRebornEffect() {
|
||||
super(Outcome.Benefit);
|
||||
staticText = "reveal the top ten cards of your library. For each color pair, " +
|
||||
"choose a card that's exactly those colors from among them. " +
|
||||
"Put the chosen cards into your hand and the rest on the bottom of your library in a random order.";
|
||||
staticText = "reveal the top ten cards of your library. For each color pair, "
|
||||
+ "choose a card that's exactly those colors from among them. "
|
||||
+ "Put the chosen cards into your hand and the rest on the bottom of your library in a random order.";
|
||||
}
|
||||
|
||||
private NivMizzetRebornEffect(final NivMizzetRebornEffect effect) {
|
||||
|
@ -153,7 +153,11 @@ class NivMizzetRebornEffect extends OneShotEffect {
|
|||
}
|
||||
cards.removeAll(cards2);
|
||||
player.putCardsOnBottomOfLibrary(cards, game, source, false);
|
||||
player.moveCards(cards2, Zone.HAND, source, game);
|
||||
if (player.moveCards(cards2, Zone.HAND, source, game)) {
|
||||
for (Card card : cards2.getCards(game)) {
|
||||
game.informPlayers(player.getName() + " chose " + card.getName() + " and put it into his or her hand.");
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -116,7 +116,8 @@ class UginTheIneffableEffect extends OneShotEffect {
|
|||
for (UUID addedTokenId : effect.getLastAddedTokenIds()) {
|
||||
|
||||
// display referenced exiled face-down card on token
|
||||
SimpleStaticAbility sa = new SimpleStaticAbility(Zone.BATTLEFIELD, new InfoEffect("Referenced object: " + card.getIdName()));
|
||||
SimpleStaticAbility sa = new SimpleStaticAbility(Zone.BATTLEFIELD, new InfoEffect("Referenced object: "
|
||||
+ card.getId().toString().substring(0, 3)));
|
||||
GainAbilityTargetEffect gainAbilityEffect = new GainAbilityTargetEffect(sa, Duration.WhileOnBattlefield);
|
||||
gainAbilityEffect.setTargetPointer(new FixedTarget(addedTokenId));
|
||||
game.addEffect(gainAbilityEffect, source);
|
||||
|
|
Loading…
Reference in a new issue