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: "neo2-62", localId: 62, // Card informations name: { en: "Poliwag", }, hp: 40, type: [ Type.WATER, ], dexId: 60, image: { low: { en: "https://assets.tcgdex.net/en/neo/neo2/62/low.png", }, high: { en: "https://assets.tcgdex.net/en/neo/neo2/62/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 43, name: "Aya Kusube" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Rollout", }, damage: 10 },{ cost: [ Type.WATER ], name: { en: "Hypnosis", }, text: { en: "The Defending Pokémon is now Asleep.", }, }], weaknesses: [{ type: Type.GRASS, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Neo Discovery", code: "neo2" } } export default card