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: "ex15-64", localId: 64, // Card informations name: { en: "Smoochum δ", }, hp: 40, type: [ Type.FIRE, ], dexId: 238, image: { low: { en: "https://assets.tcgdex.net/en/ex/ex15/64/low.png", }, high: { en: "https://assets.tcgdex.net/en/ex/ex15/64/high.png", }, }, evolveFrom: {}, tags: [ Tag.BASIC, ], illustrator: { id: 37, name: "Miki Tanaka" }, abilities: [{ id: 23, type: AbilityType.POKEPOWER, name: { en: "Baby Evolution", }, text: { en: "Once during your turn (before your attack), you may put Jynx from your hand onto Smoochum (this counts as evolving Smoochum) and remove all damage counters from Smoochum.", } }], attacks: [{ cost: [ Type.COLORLESS ], name: { en: "Alluring Kiss", }, text: { en: "Search your deck for a Basic Pokémon and a basic Energy card, show them to your opponent, and put them into your hand. Shuffle your deck afterward.", }, }], weaknesses: [{ type: Type.PSYCHIC, value: "×2" }], rarity: Rarity.Common, category: Category.POKEMON, set: { name: "Dragon Frontiers", code: "ex15" } } export default card