1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
2024-12-19 11:52:36 +01:00

72 lines
1.8 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Dragon Frontiers'
const card: Card = {
name: {
en: "Smoochum δ",
fr: "Lippouti δ",
de: "Kussilla"
},
illustrator: "Miki Tanaka",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
238,
],
hp: 40,
types: [
"Fire",
],
stage: "Basic",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Baby Evolution",
fr: "Évolution bébé",
de: "Baby Evolution"
},
effect: {
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.",
fr: "Une seule fois lors de votre tour (avant votre attaque), vous pouvez placer Lippoutou de votre main sur Lippouti (vous le faites ainsi évoluer) et retirer à Lippouti tous ses marqueurs de dégât.",
de: "Einmal während deines Zuges (vor deinem Angriff) kannst du Rossana von deiner Hand auf Kussilla legen (das zählt als Entwickeln von Kussilla) und alle Schadensmarken von Kussilla entfernen."
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Alluring Kiss",
fr: "Baiser piégeant",
de: "Verführerischer Kuss"
},
effect: {
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.",
fr: "Choisissez dans votre deck un Pokémon de base et une carte Énergie de base. Montrez-les à votre adversaire et placez-les dans votre main. Ensuite, mélangez votre deck.",
de: "Durchsuche dein Deck nach 1 Basis-Pokémon- und 1 Basis-Energiekarte, zeige sie deinem Gegner und nimm sie auf deine Hand. Mische dein Deck danach."
},
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card