1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 11:09:51 +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 '../Base Set'
const card: Card = {
name: {
en: "Raticate",
fr: "Rattatac"
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
20,
],
hp: 60,
types: [
"Colorless",
],
evolveFrom: {
en: "Poochyena",
},
stage: "Stage1",
stage: "Stage1",
attacks: [
{
@ -30,6 +35,7 @@ const card: Card = {
],
name: {
en: "Bite",
fr: "Morsure"
},
damage: 20,
@ -43,20 +49,24 @@ const card: Card = {
],
name: {
en: "Super Fang",
fr: "Croc Fatal"
},
effect: {
en: "Does damage to the Defending Pokémon equal to half the Defending Pokémon's remaining HP (rounded up to the nearest 10).",
fr: "Inflige une quantité de dégâts au Pokémon Défenseur égale à la moitié de ses PV restants (arrondis à la dizaine la plus proche)."
},
damage: "?",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
@ -64,9 +74,9 @@ const card: Card = {
},
],
description: {
fr: "Si ses moustaches sont coupées, il perd le sens de l'équilibre et devient moins rapide."
}
}
export default card