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: "ex15-3", localId: 3, // Card informations name: { en: "Heracross δ", }, hp: 70, type: [ Type.FIRE, ], dexId: 214, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex15/3/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex15/3/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 9, name: "Mitsuhiro Arita" }, abilities: [{ id: 61, type: AbilityType.POKEBODY, name: { en: "Shining Horn", }, text: { en: "As long as Heracross is the only Pokémon you have in play, your opponent's Basic Pokémon can't attack.", } }], attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Dig Deep", }, text: { en: "Search your discard pile for an Energy card, show it to your opponent, and put it into your hand.", }, },{ cost: [ Type.FIRE, Type.COLORLESS ], name: { en: "Extra Claws", }, text: { en: "If the Defending Pokémon is Pokémon-ex, this attack does 30 damage plus 20 more damage.", }, damage: 30 }], weaknesses: [{ type: Type.FIRE, value: "×2" }], rarity: Rarity.RareHolo, category: Category.POKEMON, set: { name: "Dragon Frontiers", code: "ex15" } } export default card