1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon ffdd3b4656
fix: Add Base serie translations (#161)
Signed-off-by: Avior <github@avior.me>
2021-11-12 17:07:41 +01:00

76 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 '../Jungle'
const card: Card = {
name: {
en: "Exeggutor",
fr: "Noadkoko"
},
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"
},
effect: {
en: "Switch Exeggutor with 1 of your Benched Pokémon.",
fr: "Échangez Noadkoko avec 1 des Pokémon de votre Banc."
},
},
{
cost: [
"Colorless",
],
name: {
en: "Big Eggsplosion",
fr: "Grosse éclate"
},
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."
},
damage: "20×",
},
],
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