import Card from '@tcgdex/sdk/interfaces/Card' import Type from '@tcgdex/sdk/interfaces/Type' import Tag from '@tcgdex/sdk/interfaces/Tag' import Rarity from '@tcgdex/sdk/interfaces/Rarity' import AbilityType from '@tcgdex/sdk/interfaces/AbilityType' import Category from '@tcgdex/sdk/interfaces/Category' const card: Card = { // ids id: "dp4-7", localId: 7, // Card informations name: { en: "Rotom", fr: "Motisma", }, hp: 70, type: [ Type.LIGHTNING, ], dexId: 479, image: { low: { en: "https://assets.tcgdex.net/en/dp/dp4/7/low", fr: "https://assets.tcgdex.net/fr/dp/dp4/7/low", }, high: { en: "https://assets.tcgdex.net/en/dp/dp4/7/high", fr: "https://assets.tcgdex.net/fr/dp/dp4/7/high", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: "Daisuke Ito", attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Astonish", fr: "Étonnement", }, text: { en: "Choose 1 card from your opponent's hand without looking. Look at that card you chose, then have your opponent shuffle that card into his or her deck.", fr: "Choisissez sans regarder 1 carte de la main de votre adversaire. Regardez cette carte et demandez à votre adversaire de la mélanger à son deck.", }, damage: 20 },{ cost: [ Type.LIGHTNING, Type.LIGHTNING ], name: { en: "Telebeam", fr: "Télérayon", }, text: { en: "Flip a coin. If heads, this attack does 30 damage plus 30 more damage and the Defending Pokémon is now Paralyzed.", fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts plus 30 dégâts supplémentaires et le Pokémon Défenseur est maintenant Paralysé.", }, damage: 30 }], weaknesses: [{ type: Type.DARKNESS, value: "+20" }], resistances: [{ type: Type.COLORLESS, value: "-20" }], retreat: 1, rarity: Rarity.RARE, category: Category.POKEMON, set: { name: "Great Encounters", code: "dp4" } } export default card