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 '../Jungle'
const card: Card = {
name: {
en: "Nidoqueen",
fr: "Nidoqueen"
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
31,
],
hp: 90,
types: [
"Grass",
],
evolveFrom: {
en: "Nidorina",
},
stage: "Stage2",
stage: "Stage2",
attacks: [
{
@ -31,11 +36,13 @@ const card: Card = {
],
name: {
en: "Boyfriends",
fr: "Fiancés"
},
effect: {
en: "Does 20 damage plus 20 more damage for each Nidoking you have in play.",
fr: "Inflige 20 dégâts plus 20 dégâts supplémentaires pour chaque Nidoking que vous avez en jeu."
},
damage: 20,
damage: "20+",
},
{
@ -47,12 +54,14 @@ const card: Card = {
],
name: {
en: "Mega Punch",
fr: "Ultimapoing"
},
damage: 50,
},
],
weaknesses: [
{
type: "Psychic",
@ -60,10 +69,9 @@ const card: Card = {
},
],
description: {
fr: "Ses écailles très résistantes et son corps massif sont des armes dévastatrices."
}
}
export default card