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

fix: Add Base serie translations (#161)

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-11-12 17:07:41 +01:00
committed by GitHub
parent 3b8e87e284
commit ffdd3b4656
337 changed files with 4395 additions and 2387 deletions

View File

@ -4,24 +4,29 @@ import Set from '../Jungle'
const card: Card = {
name: {
en: "Flareon",
fr: "Pyroli"
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
136,
],
hp: 70,
types: [
"Fire",
],
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+",
},
{
@ -47,14 +54,17 @@ const card: Card = {
],
name: {
en: "Flamethrower",
fr: "Lance-flammes"
},
effect: {
en: "Discard 1 Energy card attached to Flareon in order to use this attack.",
fr: "Défaussez 1 carte Énergie attachée à Pyroli pour pouvoir utiliser cette attaque."
},
damage: 60,
},
],
weaknesses: [
{
type: "Water",
@ -62,10 +72,9 @@ const card: Card = {
},
],
description: {
fr: "Il peut accumuler suffisamment de chaleur pour atteindre des températures de 1600 degrés."
}
}
export default card