Refactor/rename BeastToken3 to Beast42Token to fit naming convention

This commit is contained in:
Muz Ali 2026-01-25 19:17:31 -06:00
parent 3b3cee9b3d
commit 1501a66c3a
3 changed files with 8 additions and 8 deletions

View file

@ -11,7 +11,7 @@ import mage.cards.CardSetInfo;
import mage.constants.CardType;
import mage.constants.SubType;
import mage.filter.common.FilterControlledPermanent;
import mage.game.permanent.token.BeastToken3;
import mage.game.permanent.token.Beast42Token;
/**
*
@ -29,7 +29,7 @@ public final class TrialOfStrength extends CardImpl {
super(ownerId, setInfo, new CardType[]{CardType.ENCHANTMENT}, "{2}{G}");
// When Trial of Strength enters the battlefield, create a 4/2 green Beast creature token.
this.addAbility(new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(new BeastToken3())));
this.addAbility(new EntersBattlefieldTriggeredAbility(new CreateTokenEffect(new Beast42Token())));
// When a Cartouche you control enters, return Trial of Strength to its owner's hand.
this.addAbility(new EntersBattlefieldControlledTriggeredAbility(new ReturnToHandSourceEffect(), filter

View file

@ -7,9 +7,9 @@ import mage.constants.SubType;
/**
* @author fireshoes
*/
public final class BeastToken3 extends TokenImpl {
public final class Beast42Token extends TokenImpl {
public BeastToken3() {
public Beast42Token() {
super("Beast Token", "4/2 green Beast creature token");
cardType.add(CardType.CREATURE);
color.setGreen(true);
@ -18,12 +18,12 @@ public final class BeastToken3 extends TokenImpl {
toughness = new MageInt(2);
}
protected BeastToken3(final BeastToken3 token) {
protected Beast42Token(final Beast42Token token) {
super(token);
}
@Override
public BeastToken3 copy() {
return new BeastToken3(this);
public Beast42Token copy() {
return new Beast42Token(this);
}
}

View file

@ -216,7 +216,7 @@
|TOK:AER|Ragavan||RagavanToken|
# AKH
|TOK:AKH|Beast||BeastToken3|
|TOK:AKH|Beast||Beast42Token|
|TOK:AKH|Cat||CatToken2|
|TOK:AKH|Drake||DrakeToken|
|TOK:AKH|Hippo||HippoToken2|