1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 04:42:11 +00:00
Florian Bouillon e21ea0646e
Added BW translation (#65)
* Added basic translation
IT will need a second checkup by another source
as attacks are not correcly ordered

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>

* Removed bugged file

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-09-02 12:01:58 +02:00

83 lines
1.8 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 '../Plasma Blast'
const card: Card = {
name: {
en: "Exeggcute",
fr: "Noeunoeuf",
es: "Exeggcute",
it: "Exeggcute",
pt: "Exeggcute",
de: "Owei"
},
illustrator: "5ban Graphics",
rarity: "Secret Rare",
category: "Pokemon",
set: Set,
dexId: [
102,
],
hp: 30,
types: [
"Grass",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Propagation",
fr: "Propagation",
es: "Propagación",
it: "Propagazione",
pt: "Propagação",
de: "Ausbreitung"
},
effect: {
en: "Once during your turn (before your attack), if this Pokémon is in your discard pile, you may put this Pokémon into your hand.",
fr: "Une seule fois pendant votre tour (avant votre attaque), si ce Pokémon est dans votre pile de défausse, vous pouvez ajouter ce Pokémon à votre main.",
es: "Una vez durante tu turno (antes de tu ataque), si este Pokémon está en tu pila de descartes, puedes ponerlo en tu mano.",
it: "Una sola volta durante il tuo turno, prima di attaccare, se questo Pokémon è nella tua pila degli scarti, puoi aggiungerlo alle carte che hai in mano.",
pt: "Uma vez durante sua vez de jogar (antes de atacar), se este Pokémon estiver em sua pilha de descarte, você poderá colocá-lo em sua mão.",
de: "Einmal während deines Zuges (vor deinem Angriff) kannst du, wenn sich dieses Pokémon auf deinem Ablagestapel befindet, dieses Pokémon auf deine Hand nehmen."
},
},
],
attacks: [
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Seed Bomb",
fr: "Canon Graine",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Water",
value: "-20"
},
],
retreat: 1,
}
export default card