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: "xyp-XY180", localId: "XY180", // Card informations name: { en: "Arcanine BREAK", }, hp: 160, type: [ Type.FIRE, ], dexId: 59, image: { low: { en: "https://assets.tcgdex.net/en/xy/xyp/XY180/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xyp/XY180/high.png", }, }, evolveFrom: { en: "Arcanine", }, tags: [ Tag.BREAK, ], illustrator: { id: 4, name: "5ban Graphics" }, attacks: [{ cost: [ Type.FIRE, Type.COLORLESS ], name: { en: "Turbo Flame", }, text: { en: "Attach 2 basic Energy cards from your discard pile to 1 of your Benched Pokémon.", }, damage: 80 }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "XY Black Star Promos", code: "xyp" } } export default card