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: "xy7-29", localId: 29, // Card informations name: { en: "Rotom", fr: "Motisma", }, hp: 70, type: [ Type.LIGHTNING, ], dexId: 479, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy7/29/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy7/29/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy7/29/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy7/29/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 3, name: "Mizue" }, attacks: [{ cost: [ Type.LIGHTNING ], name: { en: "Electro Ball", fr: "Boule Élek", }, damage: 20 },{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Electric Mischief", fr: "Espièglerie Électrique", }, text: { en: "Flip 3 coins. For each heads, choose a random card from your opponent's hand. Your opponent reveals that card and shuffles it into his or her deck.", fr: "Lancez 3 pièces. Pour chaque côté face, choisissez une carte au hasard de la main de votre adversaire. Votre adversaire montre la carte choisie et la mélange avec son deck.", }, }], weaknesses: [{ type: Type.FIGHTING, value: "×2" }], resistances: [{ type: Type.METAL, value: "-20" }], retreat: 1, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Ancient Origins", code: "xy7" } } export default card