Package mage.counters

Examples of mage.counters.Counters


  protected UUID attachedTo;

  public PermanentImpl(UUID ownerId, UUID controllerId, String name) {
    super(ownerId, name);
    this.controllerId = controllerId;
    this.counters = new Counters();
  }
View Full Code Here


  }

  public PermanentImpl(UUID id, UUID ownerId, UUID controllerId, String name) {
    super(id, ownerId, name);
    this.controllerId = controllerId;
    this.counters = new Counters();
  }
View Full Code Here

    this.range = range;
    this.deck = deck;
    hand = new CardsImpl(Zone.HAND);
    graveyard = new CardsImpl(Zone.GRAVEYARD);
    abilities = new AbilitiesImpl<Ability>();
    counters = new Counters();
    manaPool = new ManaPool();
    library = new Library(playerId);
  }
View Full Code Here

            }
            ability.setSourceId(this.getId());
            abilities.add(ability);           
        }
        this.usesVariousArt = Character.isDigit(this.getClass().getName().charAt(this.getClass().getName().length()-1));
        this.counters = new Counters();
        this.morphCard = false;
    }
View Full Code Here

    }

    protected CardImpl(UUID ownerId, String name) {
        this.ownerId = ownerId;
        this.name = name;
        this.counters = new Counters();
    }
View Full Code Here

    protected CardImpl(UUID id, UUID ownerId, String name) {
        super(id);
        this.ownerId = ownerId;
        this.name = name;
        this.counters = new Counters();
    }
View Full Code Here

        this.name = name;
        this.range = range;
        hand = new CardsImpl(Zone.HAND);
        graveyard = new CardsImpl(Zone.GRAVEYARD);
        abilities = new AbilitiesImpl<>();
        counters = new Counters();
        manaPool = new ManaPool(playerId);
        library = new Library(playerId);
        sideboard = new CardsImpl(Zone.OUTSIDE);
    }
View Full Code Here

TOP

Related Classes of mage.counters.Counters

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.