mirror of
https://github.com/magefree/mage.git
synced 2025-12-24 20:41:58 -08:00
Pointed Crush of Tentacles to the BFZ Octopus token. Updated the Tiny Leaders Sultai commander proxy to 3/3 p/t and added Glass, the colorless commander proxy.
This commit is contained in:
parent
12ded1cbda
commit
260a103d45
3 changed files with 10 additions and 8 deletions
|
|
@ -110,11 +110,9 @@ public abstract class GameTinyLeadersImpl extends GameImpl{
|
|||
/**
|
||||
* Name of Tiny Leader comes from the deck name (it's not in the sideboard)
|
||||
* Additionally, it was taken into account that WOTC had missed a few color combinations
|
||||
* when making Legendary Creatures at 3 CMC. There are three Commanders available to use
|
||||
* when making Legendary Creatures at 3 CMC. There are two Commanders available to use
|
||||
* for the missing color identities:
|
||||
* Mardu [WBR 2/2],
|
||||
* Sultai [UBG 2/2], and
|
||||
* Jeskai [WUR 2/2].
|
||||
* Sultai [UBG 3/3] and Glass [colorless 3/3]
|
||||
*
|
||||
* @param commanderName
|
||||
* @param ownerId
|
||||
|
|
@ -127,6 +125,9 @@ public abstract class GameTinyLeadersImpl extends GameImpl{
|
|||
case "Sultai":
|
||||
commander = new DefaultCommander(ownerId, commanderName, "{U}{B}{G}");
|
||||
break;
|
||||
case "Glass":
|
||||
commander = new DefaultCommander(ownerId, commanderName, "{C}{C}{C}");
|
||||
break;
|
||||
default:
|
||||
CardInfo cardInfo = CardRepository.instance.findCard(commanderName);
|
||||
if (cardInfo != null) {
|
||||
|
|
@ -184,8 +185,8 @@ class DefaultCommander extends CardImpl {
|
|||
if (manaString.contains("{R}")) {
|
||||
this.color.setRed(true);
|
||||
}
|
||||
this.power = new MageInt(2);
|
||||
this.toughness = new MageInt(2);
|
||||
this.power = new MageInt(3);
|
||||
this.toughness = new MageInt(3);
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue