Package generic.actions

Examples of generic.actions.DoHeal


  @Override
  public List<IAction> getActions() {
    ArrayList<IAction> actions = new ArrayList<IAction>();
    actions.add(new DoDamage(getMonster()));
    actions.add(new DoHeal(getMonster()));
    return actions;
  }
View Full Code Here


  @Override
  public List<IAction> getActions() {
    ArrayList<IAction> actions = new ArrayList<IAction>();
    PathfinderCharacter character = getCharacter();
    actions.add(new DoDamage(character));
    actions.add(new DoHeal(character));

    actions.add(new AddToCombatTracker(character));
    return actions;
  }
View Full Code Here

TOP

Related Classes of generic.actions.DoHeal

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.