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: "ex14-33", localId: 33, // Card informations name: { en: "Gulpin", }, hp: 50, type: [ Type.GRASS, ], dexId: 316, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex14/33/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex14/33/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 25, name: "Kyoko Umemoto" }, attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Amnesia", }, text: { en: "Choose 1 of the Defending Pokémon's attacks. That Pokémon can't use that attack during your opponent's next turn.", }, },{ cost: [ Type.GRASS, Type.COLORLESS, Type.COLORLESS ], name: { en: "Sludge Toss", }, damage: 40 }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Uncommon, category: Category.POKEMON, set: { name: "Crystal Guardians", code: "ex14" } } export default card