1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 8ef099273e
fix: Add E-Card French Translations (#166)
* fix: Add E-Card French Translations

Signed-off-by: Avior <github@avior.me>

* fix: Fixed Cards without rarity

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-11-22 19:07:35 +00:00

72 lines
1.6 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 '../Aquapolis'
const card: Card = {
name: {
en: "Exeggutor",
fr: "Noadkoko"
},
illustrator: "Yukiko Baba",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
103,
],
hp: 80,
types: [
"Grass",
],
evolveFrom: {
en: "Exeggcute",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Super Eggsplosion",
fr: "Super éclate"
},
effect: {
en: "Discard any number of Energy cards attached to any of your Pokémon. Flip a number of coins equal to the number of Energy cards discarded this way. This attack does 40 damage times the number of heads.",
fr: "Vous pouvez vous défausser de n'importe quel nombre de cartes Énergie attachées n'importe lequel de vos Pokémon. Lancez un nombre de pièces égal au nombre de cartes Énergie que vous avez défaussé de cette manière. Cette attaque fait 40 dégâts multipliés par le nombre de faces."
},
damage: "40×",
},
{
cost: [
"Grass",
],
name: {
en: "Called Shot",
fr: "Tir légal"
},
effect: {
en: "Choose 1 of your opponent's Pokémon. This attack does 10 damage times the amount of Grass Energy to Exeggutor. (Don't apply Weakness or Resistance for Benched Pokémon.)",
fr: "Choisissez un des Pokémon du Banc de votre adversaire. Cette attaque inflige 10 dégâts multipliés par la quantité d'Énergie attachée à Noadkoko. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon du Banc.)"
}
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card