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

fix: Add Neo serie french translations (#167)

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-11-12 17:24:19 +01:00
committed by GitHub
parent ffdd3b4656
commit 68054fe4c9
365 changed files with 5008 additions and 2616 deletions

View File

@ -4,24 +4,29 @@ import Set from '../Neo Discovery'
const card: Card = {
name: {
en: "Espeon",
fr: "Mentali"
},
illustrator: "Naoyo Kimura",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
196,
],
hp: 70,
types: [
"Psychic",
],
evolveFrom: {
en: "Eevee",
},
stage: "Stage1",
stage: "Stage1",
attacks: [
{
@ -31,11 +36,13 @@ const card: Card = {
],
name: {
en: "Quick Attack",
fr: "Vive-attaque"
},
effect: {
en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage; if tails, this attack does 10 damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts plus 20 dégâts supplémentaires. Si c'est pile, cette attaque inflige 10 dégâts."
},
damage: 10,
damage: "10+",
},
{
@ -46,14 +53,17 @@ const card: Card = {
],
name: {
en: "Psybeam",
fr: "Rafale psy"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Confused.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Confus."
},
damage: 30,
},
],
weaknesses: [
{
type: "Psychic",
@ -61,10 +71,9 @@ const card: Card = {
},
],
description: {
fr: "En analysant les courants aériens, il peut prédire le temps ou la prochaine action de son ennemi."
}
}
export default card