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: "bw7-124", localId: 124, // Card informations name: { en: "Tranquill", fr: "Colombeau", }, hp: 80, type: [ Type.COLORLESS, ], dexId: 520, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw7/124/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw7/124/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw7/124/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw7/124/high.png", }, }, evolveFrom: { en: "Pidove", fr: "Poichigeon", }, tags: [ Tag.STAGE1, ], illustrator: { id: 40, name: "Kanako Eo" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Air Slash", fr: "Lame d'Air", }, text: { en: "Discard an Energy attached to this Pokémon.", fr: "Défaussez une Énergie attachée à ce Pokémon.", }, damage: 60 }], weaknesses: [{ type: Type.LIGHTNING, value: "×2" }], resistances: [{ type: Type.FIGHTING, value: "-20" }], retreat: 1, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Boundaries Crossed", code: "bw7" } } export default card