Examples of SpecialAction


Examples of cc.co.evenprime.bukkit.nocheat.actions.types.SpecialAction

    public Action createAction(String actionDefinition) {

        actionDefinition = actionDefinition.toLowerCase();

        if(actionDefinition.equals("cancel")) {
            return new SpecialAction();
        }

        if(actionDefinition.startsWith("log:")) {
            return parseLogAction(actionDefinition.split(":", 2)[1]);
        }
View Full Code Here

Examples of mage.abilities.SpecialAction

    return new CreateSpecialActionEffect(this);
  }

  @Override
  public boolean apply(Game game, Ability source) {
    SpecialAction newAction = (SpecialAction) action.copy();
    newAction.setSourceId(source.getSourceId());
    newAction.setControllerId(source.getControllerId());
    newAction.getTargets().addAll(source.getTargets());
    game.getState().getSpecialActions().add(newAction);
    return true;
  }
View Full Code Here

Examples of mage.abilities.SpecialAction

        return new CreateSpecialActionEffect(this);
    }

    @Override
    public boolean apply(Game game, Ability source) {
        SpecialAction newAction = (SpecialAction) action.copy();
        newAction.setSourceId(source.getSourceId());
        newAction.setControllerId(source.getControllerId());
        newAction.getTargets().addAll(source.getTargets());
        game.getState().getSpecialActions().add(newAction);
        return true;
    }
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.