1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +00:00

Added Sun & Moon for other languages

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-06-30 14:12:31 +02:00
parent 369f8dadf7
commit dc0dcff103
2732 changed files with 54455 additions and 6885 deletions

View File

@ -4,24 +4,33 @@ import Set from '../SM Black Star Promos'
const card: Card = {
name: {
en: "Raichu-GX",
fr: "Raichu-GX",
es: "Raichu-GX",
it: "Raichu-GX",
pt: "Raichu-GX",
de: "Raichu-GX"
},
illustrator: undefined,
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
26,
],
hp: 210,
types: [
"Lightning",
],
evolveFrom: {
en: "Pikachu",
},
stage: "Stage1",
stage: "Stage1",
attacks: [
{
@ -32,6 +41,11 @@ const card: Card = {
],
name: {
en: "Thunderbolt",
fr: "Tonnerre",
es: "Rayo",
it: "Fulmine",
pt: "Relâmpago",
de: "Donnerblitz"
},
damage: 120,
@ -45,20 +59,32 @@ const card: Card = {
],
name: {
en: "Spark Ball GX",
fr: "Boule Étincelles GX",
es: "Bola Chispa GX",
it: "Sfera Scintilla GX",
pt: "Bola de Fagulhas GX",
de: "Zündball GX"
},
effect: {
en: "(You can't use more than 1 GX attack in a game.)",
en: "(You cant use more than 1 GX attack in a game.)",
fr: "(Vous ne pouvez utiliser quune attaque GX par partie.)",
es: "(No puedes usar más de 1 ataque GX en una partida).",
it: "Non puoi usare più di un attacco GX a partita.",
pt: "(Você não pode usar mais de 1 ataque GX por partida.)",
de: "(Du kannst pro Spiel nur 1 GX-Attacke einsetzen.)"
},
damage: 200,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
@ -66,9 +92,7 @@ const card: Card = {
},
],
retreat: 1
}
export default card