import { Card } from '../../../interfaces' import Set from '../Neo Genesis' const card: Card = { name: { en: "Heracross", }, illustrator: "Ken Sugimori", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 214, ], hp: 60, types: [ "Grass", ], stage: "Basic", abilities: [ { type: "Poke-POWER", name: { en: "Final Blow", }, effect: { en: "If Heracross's remaining HP are 20 or less, you may make its Megahorn attack's base damage 120 instead of 60. This power can't be used if Heracross is Asleep, Confused, or Paralyzed.", }, }, ], attacks: [ { cost: [ "Grass", "Grass", "Grass", ], name: { en: "Megahorn", }, effect: { en: "Flip a coin. If tails, this attack does nothing.", }, }, ], weaknesses: [ { type: "Fire", value: "×2" }, ], } export default card