Examples of DoDamage


Examples of generic.actions.DoDamage

  }

  @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

Examples of generic.actions.DoDamage

  @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

Examples of shadowrun.actions.DoDamage

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

    actions.add(new AddToCombatTracker(character));

    actions.add(new ShowCharacter(getDocumentCharacter()));
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.