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: "bw7-76", localId: 76, // Card informations name: { en: "Gothorita", fr: "Mesmérella", }, hp: 80, type: [ Type.PSYCHIC, ], dexId: 575, image: { low: { en: "https://assets.tcgdex.net/en/bw/bw7/76/low.png", fr: "https://assets.tcgdex.net/fr/bw/bw7/76/low.png", }, high: { en: "https://assets.tcgdex.net/en/bw/bw7/76/high.png", fr: "https://assets.tcgdex.net/fr/bw/bw7/76/high.png", }, }, evolveFrom: { en: "Gothita", fr: "Scrutella", }, tags: [ Tag.STAGE1, ], illustrator: { id: 5, name: "Ken Sugimori" }, attacks: [{ cost: [ Type.COLORLESS, Type.COLORLESS ], name: { en: "Psypunch", fr: "Coup de Poing Psy", }, damage: 30 },{ cost: [ Type.PSYCHIC, Type.COLORLESS, Type.COLORLESS ], name: { en: "Destructive Beam", fr: "Rayon Désintégrateur", }, text: { en: "Flip a coin. If heads, discard an Energy attached to the Defending Pokémon.", fr: "Lancez une pièce. Si c'est face, défaussez une Énergie attachée au Pokémon Défenseur.", }, damage: 50 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], retreat: 1, rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Boundaries Crossed", code: "bw7" } } export default card