import Card from '../../../interfaces/Card' import Type from '../../../interfaces/Type' import Tag from '../../../interfaces/Tag' import Rarity from '../../../interfaces/Rarity' import AbilityType from '../../../interfaces/AbilityType' import Category from '../../../interfaces/Category' const card: Card = { // ids id: "neo1-6", localId: 6, // Card informations name: { en: "Heracross", }, hp: 60, type: [ Type.GRASS, ], dexId: 214, image: { low: { en: "https://assets.tcgdex.net/en/neo/neo1/6/low.png", }, high: { en: "https://assets.tcgdex.net/en/neo/neo1/6/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 5, name: "Ken Sugimori" }, abilities: [{ id: 190, type: AbilityType.POKEPOWER, name: { en: "Final Blow", }, text: { 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: [ Type.GRASS, Type.GRASS, Type.GRASS ], name: { en: "Megahorn", }, text: { en: "Flip a coin. If tails, this attack does nothing.", }, }], weaknesses: [{ type: Type.FIRE, value: "×2" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Neo Genesis", code: "neo1" } } export default card