Ejemplo n.º 1
0
 public override Action LevelThreeAction(Action action)
 {
     action = new Action(GodUtils.getRandomActionType(), action.getForce());
     action.setForce(action.getForce() * this.pissOffLevel);
     return action;
 }
Ejemplo n.º 2
0
 public override Action LevelTwoAction(Action action)
 {
     action.setForce(action.getForce() * -this.pissOffLevel);
     return action;
 }