1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39: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 Genesis'
const card: Card = {
name: {
en: "Granbull",
fr: "Granbull"
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
210,
],
hp: 70,
types: [
"Colorless",
],
evolveFrom: {
en: "Snubbull",
},
stage: "Stage1",
stage: "Stage1",
attacks: [
{
@ -31,6 +36,7 @@ const card: Card = {
],
name: {
en: "Tackle",
fr: "Charge"
},
damage: 20,
@ -44,20 +50,24 @@ const card: Card = {
],
name: {
en: "Raging Charge",
fr: "Charge furieuse"
},
effect: {
en: "This attack does 10 damage plus 10 damage for each damage counter on Granbull. Then, Granbull does 20 damage to itself.",
fr: "Cette attaque inflige 10 dégâts plus 10 dégâts pour chaque marqueur de dégâts sur Granbull. Ensuite, Granbull s'inflige 20 dégâts."
},
damage: 10,
damage: "10+",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
@ -65,9 +75,9 @@ const card: Card = {
},
],
description: {
fr: "Il est timide et effarouché. Si on l'attaque, it flails about parer son attaquant."
}
}
export default card