Examples of Mine


Examples of res.elements.Mine

    gunUseAmmo = 10;
    damageRange = new Vec2(2.5f, 2.5f);
  }

  public void createBullet() {
    Mine shoot = new Mine();
    Common.info(5, "new mine");
    shoot.actions.removeAction("nogravity");
    shoot.actions.removeAction("collision");

    Vec2 range = damageRange;
View Full Code Here

Examples of vindinium.Board.Mine

            return 0;
        }
        int delta = 0;
        Tile tile = board.tileAt(p);
        if (tile instanceof Mine) {
            Mine mine = (Mine) tile;
            delta += mine.isOwnedBy(hero) ? 0 : -HP_LOSS_MINE_FIGHT;
        } else if (tile == Tile.TAVERN) {
            delta += HP_WIN_TAVERN;
        }

        delta += deltaHpFrom(move(p, Direction.NORTH));
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.