mirror of
https://github.com/magefree/mage.git
synced 2026-01-26 21:29:17 -08:00
DragonTokenGold -> DragonGoldToken
This commit is contained in:
parent
abe36d1692
commit
b281d75f11
4 changed files with 10 additions and 10 deletions
|
|
@ -17,7 +17,7 @@ import mage.constants.SubType;
|
|||
import mage.filter.FilterCard;
|
||||
import mage.filter.predicate.Predicates;
|
||||
import mage.game.Game;
|
||||
import mage.game.permanent.token.DragonTokenGold;
|
||||
import mage.game.permanent.token.DragonGoldToken;
|
||||
import mage.players.Player;
|
||||
|
||||
import java.util.UUID;
|
||||
|
|
@ -93,7 +93,7 @@ class SwordOfDungeonsAndDragonsEffect extends OneShotEffect {
|
|||
return false;
|
||||
}
|
||||
for (int i = 0; i < 1000; i++) { // just in case loop goes too long
|
||||
new DragonTokenGold().putOntoBattlefield(1, game, source);
|
||||
new DragonGoldToken().putOntoBattlefield(1, game, source);
|
||||
if (controller.rollDice(outcome, source, game, 20) != 20) {
|
||||
break;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -300,7 +300,7 @@ class UrzaAcademyHeadmasterRandomEffect extends OneShotEffect {
|
|||
break;
|
||||
case 15: // (gold) SARKHAN UNBROKEN 2
|
||||
sb.append("Create a 4/4 gold Dragon creature token with flying.");
|
||||
effects.add(new CreateTokenEffect(new DragonTokenGold(), 1));
|
||||
effects.add(new CreateTokenEffect(new DragonGoldToken(), 1));
|
||||
break;
|
||||
case 16: // SORIN MARKOV 2
|
||||
sb.append("Target player's life total becomes 10.");
|
||||
|
|
|
|||
|
|
@ -10,9 +10,9 @@ import mage.constants.SubType;
|
|||
*
|
||||
* @author Saga
|
||||
*/
|
||||
public final class DragonTokenGold extends TokenImpl {
|
||||
public final class DragonGoldToken extends TokenImpl {
|
||||
|
||||
public DragonTokenGold() {
|
||||
public DragonGoldToken() {
|
||||
super("Dragon Token", "4/4 gold Dragon creature token with flying");
|
||||
cardType.add(CardType.CREATURE);
|
||||
color.setWhite(true);
|
||||
|
|
@ -26,11 +26,11 @@ public final class DragonTokenGold extends TokenImpl {
|
|||
addAbility(FlyingAbility.getInstance());
|
||||
}
|
||||
|
||||
protected DragonTokenGold(final DragonTokenGold token) {
|
||||
protected DragonGoldToken(final DragonGoldToken token) {
|
||||
super(token);
|
||||
}
|
||||
|
||||
public DragonTokenGold copy() {
|
||||
return new DragonTokenGold(this);
|
||||
public DragonGoldToken copy() {
|
||||
return new DragonGoldToken(this);
|
||||
}
|
||||
}
|
||||
|
|
@ -647,7 +647,7 @@
|
|||
|TOK:GTC|Spirit||WhiteBlackSpiritToken|
|
||||
|
||||
# H17
|
||||
|TOK:H17|Dragon||DragonTokenGold|
|
||||
|TOK:H17|Dragon||DragonGoldToken|
|
||||
|
||||
# HOU
|
||||
|TOK:HOU|Horse||CrestedSunmareToken|
|
||||
|
|
@ -996,7 +996,7 @@
|
|||
|TOK:UST|Beast||BeastToken|
|
||||
|TOK:UST|Brainiac||BrainiacToken|
|
||||
|TOK:UST|Clue||ClueArtifactToken|
|
||||
|TOK:UST|Dragon||DragonTokenGold|
|
||||
|TOK:UST|Dragon||DragonGoldToken|
|
||||
|TOK:UST|Elemental|1|RedElementalToken|
|
||||
|TOK:UST|Elemental|2|VoiceOfResurgenceToken|
|
||||
|TOK:UST|Gnome||GnomeToken|
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue