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: "xy4-70", localId: 70, // Card informations name: { en: "Dedenne", fr: "Dedenne", }, hp: 70, type: [ Type.FAIRY, ], dexId: 702, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy4/70/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy4/70/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy4/70/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy4/70/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 4, name: "5ban Graphics" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Nuzzle", fr: "Frotte-Frimousse", }, text: { en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.", }, },{ cost: [ Type.FAIRY, Type.COLORLESS, Type.COLORLESS ], name: { en: "Spiral Drain", fr: "Spirale Épuisante", }, text: { en: "Heal 20 damage from this Pokémon.", fr: "Soignez 20 dégâts à ce Pokémon.", }, damage: 60 }], weaknesses: [{ type: Type.METAL, value: "×2" }], resistances: [{ type: Type.DARKNESS, value: "-20" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Phantom Forces", code: "xy4" } } export default card