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: "dp6-92", localId: 92, // Card informations name: { en: "Drifloon", fr: "Baudrive", }, hp: 50, type: [ Type.PSYCHIC, ], dexId: 425, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp6/92/low.png", fr: "https://assets.tcgdex.net/fr/dp/dp6/92/low.png", }, high: { en: "https://assets.tcgdex.net/en/dp/dp6/92/high.png", fr: "https://assets.tcgdex.net/fr/dp/dp6/92/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 7, name: "Sumiyoshi Kizuki" }, attacks: [{ cost: [ Type.PSYCHIC ], name: { en: "Mind Bend", fr: "Contrôleur d'esprit", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused.", fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Confus.", }, damage: 10 },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Gust", fr: "Tornade", }, damage: 20 }], weaknesses: [{ type: Type.DARKNESS, value: "+10" }], resistances: [{ type: Type.COLORLESS, value: "-20" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Legends Awakened", code: "dp6" } } export default card