mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 12:52:13 +00:00
79 lines
1.5 KiB
TypeScript
79 lines
1.5 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Legends Awakened'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Exeggcute",
|
|
fr: "Noeunoeuf",
|
|
de: "Owei"
|
|
},
|
|
|
|
illustrator: "Midori Harada",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
set: Set,
|
|
|
|
dexId: [
|
|
102,
|
|
],
|
|
|
|
hp: 50,
|
|
|
|
types: [
|
|
"Psychic",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Call for Family",
|
|
fr: "Appel à la famille",
|
|
de: "Familienruf"
|
|
},
|
|
effect: {
|
|
en: "Search your deck for up to 2 in any combination of Grass Basic Pokémon and Psychic Basic Pokémon and put them onto your Bench. Shuffle your deck afterward.",
|
|
fr: "Choisissez dans votre deck n'importe quelle combinaison de jusqu'à 2 Pokémon de base Grass et Pokémon de base Psychic et placez-les sur votre Banc. Ensuite, mélangez votre deck.",
|
|
de: "Durchsuche dein Deck nach bis zu 2 Karten in beliebiger Kombination aus - und -Basis-Pokémon-Karten und lege sie auf deine Bank. Mische dein Deck danach."
|
|
},
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Psychic",
|
|
],
|
|
name: {
|
|
en: "Hypnosis",
|
|
fr: "Hypnose",
|
|
de: "Hypnose"
|
|
},
|
|
effect: {
|
|
en: "The Defending Pokémon is now Asleep.",
|
|
fr: "Le Pokémon Défenseur est maintenant Endormi.",
|
|
de: "Das Verteidigende Pokémon schläft jetzt."
|
|
},
|
|
damage: 10,
|
|
|
|
},
|
|
],
|
|
|
|
weaknesses: [
|
|
{
|
|
type: "Psychic",
|
|
value: "+10"
|
|
},
|
|
],
|
|
|
|
retreat: 1,
|
|
|
|
description: {
|
|
fr: "Ces six œufs communiquent par télépathie. Ils peuvent se réunir rapidement si on les sépare."
|
|
}
|
|
}
|
|
|
|
export default card
|