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

feat: Added XY Datas for other languages (#265)

This commit is contained in:
2022-03-31 11:01:32 +02:00
committed by GitHub
parent fc74c637d3
commit 4ec775fe56
1694 changed files with 23608 additions and 4670 deletions

View File

@ -4,22 +4,28 @@ import Set from '../BREAKthrough'
const card: Card = {
name: {
en: "Mewtwo EX",
fr: "Mewtwo-EX",
fr: "Mewtwo EX",
es: "Mewtwo EX",
it: "Mewtwo EX",
pt: "Mewtwo EX",
de: "Mewtu EX"
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
illustrator: "Mitsuhiro Arita",
rarity: "Secret Rare",
category: "Pokemon",
set: Set,
dexId: [
150,
],
hp: 170,
types: [
"Psychic",
],
suffix: "EX",
attacks: [
@ -30,10 +36,18 @@ const card: Card = {
name: {
en: "Shatter Shot",
fr: "Coup Fracassant",
es: "Proyectil Estallido",
it: "Frantumacolpo",
pt: "Tiro de Estilhaçar",
de: "Splitterschuss"
},
effect: {
en: "This attack does 30 damage times the amount of Psychic Energy attached to this Pokémon.",
fr: "Cette attaque inflige 30 dégâts multipliés par le nombre d'Énergies Psychic attachées à ce Pokémon.",
es: "Este ataque hace 30 puntos de daño por cada Energía Psychic unida a este Pokémon.",
it: "Questo attacco infligge 30 danni per ogni Energia Psychic assegnata a questo Pokémon.",
pt: "Este ataque causa 30 de danos vezes a quantidade de Energia Psychic ligada a este Pokémon.",
de: "Dieser Angriff fügt 30 Schadenspunkte mal der Anzahl der an dieses Pokémon angelegten Psychic-Energien zu."
},
damage: "30×",
@ -47,14 +61,23 @@ const card: Card = {
name: {
en: "Damage Change",
fr: "Change Dégâts",
es: "Cambio de Daño",
it: "Barattadanni",
pt: "Troca de Danos",
de: "Schadenswechsel"
},
effect: {
en: "Switch all damage counters on this Pokémon with those on your opponents Active Pokémon.",
en: "Switch all damage counters on this Pokémon with those on your opponent's Active Pokémon.",
fr: "Échangez tous les marqueurs de dégâts de ce Pokémon avec ceux du Pokémon Actif de votre adversaire.",
es: "Cambia todos los contadores de daño de este Pokémon por los del Pokémon Activo de tu rival.",
it: "Scambia tutti i segnalini danno su questo Pokémon con quelli sul Pokémon attivo del tuo avversario.",
pt: "Troque todos os contadores de dano deste Pokémon com os do Pokémon Ativo do seu oponente.",
de: "Tausche alle Schadensmarken auf diesem Pokémon mit denen auf dem Aktiven Pokémon deines Gegners aus."
},
},
],
weaknesses: [
{
type: "Psychic",
@ -63,9 +86,7 @@ const card: Card = {
],
retreat: 2,
stage: "Basic"
}
export default card