1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 02:40:11 +00:00
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

91 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../HeartGold SoulSilver'
const card: Card = {
name: {
en: "Exeggutor",
fr: "Noadkoko",
de: "Kokowei"
},
illustrator: "Miki Tanaka",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
103,
],
hp: 90,
types: [
"Psychic",
],
evolveFrom: {
en: "Exeggcute",
fr: "Noeunoeuf",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Energy Absorption",
fr: "Absorption dénergie",
de: "Energieaufnahme"
},
effect: {
en: "Search your discard pile for up to 2 Energy cards and attach them to Exeggutor.",
fr: "Cherchez dans votre pile de défausse jusquà deux cartes Énergie et attachez-les à Noadkoko.",
de: "Durchsuche deinen Ablagestapel nach bis zu 2 Energiekarten und lege sie an Kokowei an."
},
},
{
cost: [
"Psychic",
],
name: {
en: "Big Eggsplosion",
fr: "Grosse éclate",
de: "Große Eggsplosion"
},
effect: {
en: "Flip a coin for each Energy attached to Exeggutor. This attack does 40 damage times the number of heads.",
fr: "Lancez une pièce pour chaque carte Énergie attachée à Noadkoko. Cette attaque inflige 40 dégâts multipliés par le nombre de faces.",
de: "Wirf für jede an Kokowei angelegte Energie 1 Münze. Dieser Angriff fügt 40 Schadenspunkte mal der Anzahl \"Kopf\" zu."
},
damage: "40x",
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
description: {
en: "If a head drops off, it emits a telepathic call in search of others to form an Exeggcute cluster."
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card