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: "Cyndaquil",
fr: "Héricendre"
},
illustrator: "Shin-ichi Yoshida",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
155,
],
hp: 50,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
@ -28,9 +31,11 @@ const card: Card = {
],
name: {
en: "Fireworks",
fr: "Feu d'artifice"
},
effect: {
en: "Flip a coin. If tails, discard 1 Energy card attached to Cyndaquil.",
fr: "Lancez une pièce. Si c'est pile, défaussez 1 carte Énergie attachée à Héricendre."
},
damage: 20,
@ -42,14 +47,17 @@ 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 points dégâts."
},
damage: 10,
damage: "10+",
},
],
weaknesses: [
{
type: "Water",
@ -57,10 +65,9 @@ const card: Card = {
},
],
description: {
fr: "Il est timide et se roule toujours en boule. Quand on l'attaque, il enflamme son dos pour se protéger."
}
}
export default card