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: "xy8-31", localId: 31, // Card informations name: { en: "Remoraid", fr: "Rémoraid", }, hp: 60, type: [ Type.WATER, ], dexId: 223, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy8/31/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy8/31/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy8/31/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy8/31/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 29, name: "Suwama Chiaki" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Wild River", fr: "Rivière Sauvage", }, text: { en: "Switch this Pokémon with 1 of your Benched Pokémon.", fr: "Échangez ce Pokémon avec l'un de vos Pokémon de Banc.", }, },{ cost: [ Type.WATER, Type.COLORLESS ], name: { en: "Water Gun", fr: "Pistolet à O", }, damage: 20 }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 1, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "BREAKthrough", code: "xy8" } } export default card