Rename Attack/Defense to Power/Toughness for consistency

This commit is contained in:
drdev
2014-10-13 04:37:55 +00:00
parent 75f60f07c8
commit f8a54eed14
42 changed files with 225 additions and 225 deletions

View File

@@ -232,8 +232,8 @@ public class PlayArea extends CardPanelContainer implements CardPanelMouseListen
|| panel.getCard().isCopiedSpell()
|| !panel.getCard().getCounters().equals(firstPanel.getCard().getCounters())
|| (panel.getCard().isSick() != firstPanel.getCard().isSick())
|| (panel.getCard().getNetAttack() != firstPanel.getCard().getNetAttack())
|| (panel.getCard().getNetDefense() != firstPanel.getCard().getNetDefense())
|| (panel.getCard().getNetPower() != firstPanel.getCard().getNetPower())
|| (panel.getCard().getNetToughness() != firstPanel.getCard().getNetToughness())
|| (stack.size() == creatureStackMax)) {
// If this creature has attachments or the stack is full,
// put it to the right.

View File

@@ -35,8 +35,8 @@ public class RunTest {
this.check("2.2", c.isType("Elf"));
this.check("2.3", c.isType("Warrior"));
this.check("3", c.getText().equals(""));
this.check("4", c.getNetAttack() == 2);
this.check("5", c.getNetDefense() == 3);
this.check("4", c.getNetPower() == 2);
this.check("5", c.getNetToughness() == 3);
this.check("6", c.getKeyword().isEmpty());
c = cf.getCard("Shock", null);