1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 10:49:55 +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

70 lines
1.2 KiB
TypeScript
Raw 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 '../HeartGold SoulSilver'
const card: Card = {
name: {
en: "Exeggcute",
fr: "Noeunoeuf",
de: "Owei"
},
illustrator: "Miki Tanaka",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
102,
],
hp: 50,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Continuous Eggsplosion",
fr: "Éclate continue",
de: "Dauernde Eggsplosion"
},
effect: {
en: "Flip a coin until you get tails. This attack does 10 damage times the number of heads.",
fr: "Lancez une pièce jusquà ce quelle tombe sur pile. Cette attaque inflige 10 dégâts multipliés par le nombre de faces.",
de: "Wirf solange eine Münze, bis zum ersten Mal das Ergebnis \"Zahl\" kommt. Dieser Angriff fügt 10 Schadenspunkte mal der Anzahl \"Kopf\" zu."
},
damage: "10x",
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
description: {
en: "Using telepathy only they can employ, they always form a cluster of six Exeggcute."
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card