orionsbelt-battlegrounds/battle-engine

View on GitHub
src/units/fenix.js

Summary

Maintainability
A
0 mins
Test Coverage
var normalMovement = require("./../moves/movement/normalMovement.js");
var Rebound = require("./../moves/special/rebound.js");

module.exports = {
  attack : 2500,
  defense: 2950,
  range : 4,
  name : "fenix",
  code : "f",
  value : 100,
  type : "mechanic",
  category:"heavy",
  displacement:"air",
  movementType: normalMovement,
  movementCost: 3,
  attackMoves : [],
  posAttackMoves : [new Rebound()],
  defenseMoves : [],
  posDefenseMoves : []
};