1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

81 lines
1.5 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 '../Jungle'
const card: Card = {
name: {
en: "Exeggutor",
fr: "Noadkoko",
de: "Kokowei"
},
illustrator: "Kagemaru Himeno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
103,
],
hp: 80,
types: [
"Grass",
],
evolveFrom: {
en: "Exeggcute",
},
stage: "Stage1",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Teleport",
fr: "Téléport",
de: "Teleport"
},
effect: {
en: "Switch Exeggutor with 1 of your Benched Pokémon.",
fr: "Échangez Noadkoko avec 1 des Pokémon de votre Banc.",
de: "Tausche Kokowei mit einem Pokémon auf deiner Bank aus."
},
},
{
cost: [
"Colorless",
],
name: {
en: "Big Eggsplosion",
fr: "Grosse éclate",
de: "Große Eggsplosion"
},
effect: {
en: "Flip a number of coins equal to the number of Energy attached to Exeggutor. This attack does 20 damage times the number of heads.",
fr: "Lancez un nombre de pièces égal au nombre d'Énergies attachées à Noadkoko. Cette attaque inflige 20 dégâts multipliés par le nombre de faces.",
de: "Wirf eine Anzahl Münzen, die der auf Kokowei abgelegten Energiemenge entspricht. Dieser Angriff fügt jedesmal, wenn die Münze 'Kopf' zeigt, 20 Schadenspunkte zu."
},
damage: "20x",
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
description: {
fr: "On raconte que si une de ses têtes se détache, elle se transforme en un Nœunœuf."
}
}
export default card