more text adjustments

This commit is contained in:
xenohedron 2024-02-16 22:28:43 -05:00
parent 361cf94d9c
commit 6f87cfa95b
4 changed files with 7 additions and 8 deletions

View file

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

View file

@ -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.

View file

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

View file

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