1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-12 15:59: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,23 +4,26 @@ import Set from '../Neo Genesis'
const card: Card = {
name: {
en: "Sneasel",
fr: "Farfuret"
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
215,
],
hp: 60,
types: [
"Darkness",
],
stage: "Basic",
attacks: [
{
cost: [
@ -28,11 +31,13 @@ const card: Card = {
],
name: {
en: "Fury Swipes",
fr: "Combo-griffe"
},
effect: {
en: "Flip 3 coins. This attack does 10 damage times the number of heads.",
fr: "Lancez 3 pièces. Cette attaque inflige 10 dégâts multipliés par le nombre de faces."
},
damage: 10,
damage: "10×",
},
{
@ -42,11 +47,13 @@ const card: Card = {
],
name: {
en: "Beat Up",
fr: "Baston"
},
effect: {
en: "Flip a coin for each of your Pokémon in play (including this one). This attack does 20 damage times the number of heads.",
fr: "Lancez une pièce pour chacun de vos Pokémon en jeu (y compris celui-là). Cette attaque inflige 20 dégâts multipliés par le nombre de faces."
},
damage: 20,
damage: "20×",
},
],
@ -58,9 +65,9 @@ const card: Card = {
},
],
description: {
fr: "Ses pattes cachent des griffes aiguisées. S'il est attaqué, il sort ses griffes et transperce son ennemi."
}
}
export default card