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: "g1-18", localId: 18, // Card informations name: { en: "M Blastoise-EX", fr: "M-Tortank-EX", }, hp: 220, type: [ Type.WATER, ], dexId: 9, image: { low: { en: "https://assets.tcgdex.net/en/xy/g1/18/low.png", fr: "https://assets.tcgdex.net/fr/xy/g1/18/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/g1/18/high.png", fr: "https://assets.tcgdex.net/fr/xy/g1/18/high.png", }, }, evolveFrom: { en: "Blastoise-EX", fr: "Tortank-EX", }, tags: [ Tag.MEGA, ], illustrator: { id: 4, name: "5ban Graphics" }, attacks: [{ cost: [ Type.WATER, Type.WATER, Type.COLORLESS, Type.COLORLESS ], name: { en: "Dread Launcher", fr: "Lanceur d'Effroi", }, text: { en: "Flip a coin. If tails, discard 2 Water Energy attached to this Pokémon.", fr: "Lancez une pièce. Si c'est pile, défaussez 2 Énergies Water attachées à ce Pokémon.", }, damage: 180 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 3, rarity: Rarity.RareHoloEX, category: Category.POKEMON, set: { name: "Generations", code: "g1" } } export default card