1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +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 '../Fossil'
const card: Card = {
name: {
en: "Golbat",
fr: "Nosferalto"
},
illustrator: "Kagemaru Himeno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
42,
],
hp: 60,
types: [
"Grass",
],
evolveFrom: {
en: "Zubat",
},
stage: "Stage1",
stage: "Stage1",
attacks: [
{
@ -32,6 +37,7 @@ const card: Card = {
],
name: {
en: "Wing Attack",
fr: "Cru-aile"
},
damage: 30,
@ -45,20 +51,24 @@ const card: Card = {
],
name: {
en: "Leech Life",
fr: "Vampirisme"
},
effect: {
en: "Remove a number of damage counters from Golbat equal to the damage done to the Defending Pokémon (after applying Weakness and Resistance). If Golbat has fewer damage counters than that, remove all of them.",
fr: "Retirez de Nosferalto un nombre de marqueurs de dégâts égal au nombre de dégâts infligés au Pokémon Défenseur (après application de la Faiblesse et de la Résistance.) Si le nombre de marqueurs sur Nosferalto est inférieur à ce résultat, retirez-les tous."
},
damage: 20,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
@ -66,9 +76,9 @@ const card: Card = {
},
],
description: {
fr: "Une fois son adversaire mordu, il absorbera son énergie même s'il devient trop gros pour voler."
}
}
export default card