1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +00:00

fix: Add Base serie translations (#161)

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-11-12 17:07:41 +01:00
committed by GitHub
parent 3b8e87e284
commit ffdd3b4656
337 changed files with 4395 additions and 2387 deletions

View File

@ -4,24 +4,29 @@ 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",
stage: "Stage1",
attacks: [
{
@ -30,9 +35,11 @@ const card: Card = {
],
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."
},
},
@ -42,14 +49,17 @@ const card: Card = {
],
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,
damage: "20×",
},
],
weaknesses: [
{
type: "Fire",
@ -57,10 +67,9 @@ const card: Card = {
},
],
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