forked from External/mage
more text adjustments
This commit is contained in:
parent
361cf94d9c
commit
6f87cfa95b
4 changed files with 7 additions and 8 deletions
|
|
@ -208,7 +208,7 @@ class AKillerAmongUsEffect extends OneShotEffect {
|
|||
class AKillerAmongUsCost extends CostImpl {
|
||||
|
||||
AKillerAmongUsCost() {
|
||||
this.text = "Reveal the chosen creature type";
|
||||
this.text = "Reveal the creature type you chose";
|
||||
}
|
||||
|
||||
private AKillerAmongUsCost(final AKillerAmongUsCost cost) {
|
||||
|
|
|
|||
|
|
@ -40,8 +40,7 @@ public final class AnzragTheQuakeMole extends CardImpl {
|
|||
Ability ability = new BecomesBlockedSourceTriggeredAbility(
|
||||
new UntapAllEffect(filter), false
|
||||
);
|
||||
ability.addEffect(new AdditionalCombatPhaseEffect()
|
||||
.setText("After this combat phase, there is an additional combat phase"));
|
||||
ability.addEffect(new AdditionalCombatPhaseEffect());
|
||||
this.addAbility(ability);
|
||||
|
||||
// {3}{R}{R}{G}{G}: Anzrag must be blocked each combat this turn if able.
|
||||
|
|
|
|||
|
|
@ -84,8 +84,8 @@ class FetchQuestEffect extends OneShotEffect {
|
|||
|
||||
FetchQuestEffect() {
|
||||
super(Outcome.Benefit);
|
||||
staticText = "mill seven cards, then put a creature, enchantment, or land card "
|
||||
+ "from among cards milled this way onto the battlefield";
|
||||
staticText = "mill seven cards. Then put a creature, enchantment, or land card "
|
||||
+ "from among the milled cards onto the battlefield";
|
||||
}
|
||||
|
||||
private FetchQuestEffect(final FetchQuestEffect effect) {
|
||||
|
|
@ -115,4 +115,4 @@ class FetchQuestEffect extends OneShotEffect {
|
|||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -27,7 +27,7 @@ public final class JeskasWill extends CardImpl {
|
|||
|
||||
// Choose one. If you control a commander as you cast this spell, you may choose both.
|
||||
this.getSpellAbility().getModes().setChooseText(
|
||||
"Choose one. If you control a commander as you cast this spell, you may choose both."
|
||||
"Choose one. If you control a commander as you cast this spell, you may choose both instead."
|
||||
);
|
||||
this.getSpellAbility().getModes().setMoreCondition(ControlACommanderCondition.instance);
|
||||
|
||||
|
|
@ -70,7 +70,7 @@ class JeskasWillEffect extends OneShotEffect {
|
|||
public boolean apply(Game game, Ability source) {
|
||||
Player controller = game.getPlayer(source.getControllerId());
|
||||
Player player = game.getPlayer(source.getFirstTarget());
|
||||
if (controller == null || player == null || player.getHand().size() < 1) {
|
||||
if (controller == null || player == null || player.getHand().isEmpty()) {
|
||||
return false;
|
||||
}
|
||||
controller.getManaPool().addMana(Mana.RedMana(player.getHand().size()), game, source);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue