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: "ex16-23", localId: 23, // Card informations name: { en: "Seviper", }, hp: 70, type: [ Type.GRASS, ], dexId: 336, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex16/23/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex16/23/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 2, name: "Midori Harada" }, attacks: [{ cost: [ Type.GRASS ], name: { en: "Sharp Fang", }, damage: 10 },{ cost: [ Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Toxic", }, text: { en: "The Defending Pokémon is now Poisoned. Put 2 damage counters instead of 1 on the Defending Pokémon between turns.", }, }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Power Keepers", code: "ex16" } } export default card