- Initial code to Combine Combat and pwCombat into a unified combat front.

- Human can now attack more than one Planeswalker.
This commit is contained in:
jendave
2011-08-06 14:15:37 +00:00
parent eea8f37930
commit 9cf0ec99ae
19 changed files with 441 additions and 710 deletions

View File

@@ -5802,9 +5802,6 @@ public class CardFactory_Creatures {
CardList list = new CardList(AllZone.Combat.getAttackers());
if(list.contains(c)) AllZone.Combat.removeFromCombat(c);
CardList pwlist = new CardList(AllZone.pwCombat.getAttackers());
if(pwlist.contains(c)) AllZone.pwCombat.removeFromCombat(c);
PlayerZone to = AllZone.getZone(Constant.Zone.Battlefield, c.getOwner());
to.add(c);