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: "xy4-20", localId: 20, // Card informations name: { en: "Frillish", fr: "Viskuse", }, hp: 70, type: [ Type.WATER, ], dexId: 592, image: { low: { en: "https://assets.tcgdex.net/en/xy/xy4/20/low.png", fr: "https://assets.tcgdex.net/fr/xy/xy4/20/low.png", }, high: { en: "https://assets.tcgdex.net/en/xy/xy4/20/high.png", fr: "https://assets.tcgdex.net/fr/xy/xy4/20/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 25, name: "Kyoko Umemoto" }, attacks: [{ cost: [ Type.WATER ], name: { en: "Confuse Ray", fr: "Onde Folie", }, text: { en: "Your opponent's Active Pokémon is now Confused.", fr: "Le Pokémon Actif de votre adversaire est maintenant Confus.", }, }], weaknesses: [{ type: Type.GRASS, value: "×2" }], retreat: 2, rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Phantom Forces", code: "xy4" } } export default card