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: "si1-4", localId: 4, // Card informations name: { en: "Togepi", }, hp: 40, type: [ Type.COLORLESS, ], dexId: 175, image: { low: { en: "https://assets.tcgdex.net/en/neo/si1/4/low.png", }, high: { en: "https://assets.tcgdex.net/en/neo/si1/4/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 75, name: "Keiko Fukuyama" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Bawl", }, text: { en: "Flip a coin. If heads, the Defending Pokémon is now Confused.", }, damage: 10 }], resistances: [{ type: Type.PSYCHIC, value: "-30" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Southern Islands", code: "si1" } } export default card