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: "ex9-20", localId: 20, // Card informations name: { en: "Seviper", }, hp: 80, type: [ Type.GRASS, ], dexId: 336, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex9/20/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex9/20/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 9, name: "Mitsuhiro Arita" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Pierce", }, damage: 10 },{ cost: [ Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Bite Off", }, text: { en: "If the Defending Pokémon is Pokémon-ex, this attack does 30 damage plus 30 more damage.", }, damage: 30 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Rare, category: Category.POKEMON, set: { name: "Emerald", code: "ex9" } } export default card