forked from External/mage
Merge pull request #2216 from stravant/master
Full characteristic-based card rendering for cards
This commit is contained in:
commit
cb91c5b9aa
70 changed files with 6154 additions and 1013 deletions
|
|
@ -144,6 +144,11 @@ public class Commander implements CommandObject {
|
|||
public ObjectColor getColor(Game game) {
|
||||
return card.getColor(game);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ObjectColor getFrameColor(Game game) {
|
||||
return card.getFrameColor(game);
|
||||
}
|
||||
|
||||
@Override
|
||||
public ManaCosts<ManaCost> getManaCost() {
|
||||
|
|
@ -164,6 +169,11 @@ public class Commander implements CommandObject {
|
|||
public MageInt getToughness() {
|
||||
return card.getToughness();
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getStartingLoyalty() {
|
||||
return card.getStartingLoyalty();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void adjustCosts(Ability ability, Game game) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue