1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49: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: "Sudowoodo",
fr: "Simularbre"
},
illustrator: "Ken Sugimori",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
185,
],
hp: 60,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
@ -28,11 +31,13 @@ const card: Card = {
],
name: {
en: "Flail",
fr: "Fleau"
},
effect: {
en: "Does 10 damage times the number of damage counters on Sudowoodo.",
fr: "Inflige 10 dégâts multipliés par le nombre de marqueurs de dégâts sur Simularbre."
},
damage: 10,
damage: "10×",
},
{
@ -42,12 +47,14 @@ const card: Card = {
],
name: {
en: "Rock Throw",
fr: "Jet-pierres"
},
damage: 30,
},
],
weaknesses: [
{
type: "Grass",
@ -55,10 +62,9 @@ const card: Card = {
},
],
description: {
fr: "Bien qu'il prétende être un arbre, il ressemble plus à un rock qu'à une plante."
}
}
export default card