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: "Ryo Ueda",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
150,
],
hp: 170,
types: [
"Psychic",
],
suffix: "EX",
attacks: [
@ -31,10 +37,18 @@ const card: Card = {
name: {
en: "Photon Wave",
fr: "Onde Photon",
es: "Onda Fotón",
it: "Onda Fotonica",
pt: "Onda de Fótons",
de: "Photonwelle"
},
effect: {
en: "During your opponents next turn, any damage done by attacks from the Defending Pokémon is reduced by 30 (before applying Weakness and Resistance).",
en: "During your opponent's next turn, any damage done by attacks from the Defending Pokémon is reduced by 30 (before applying Weakness and Resistance).",
fr: "Pendant le prochain tour de votre adversaire, tous les dégâts infligés par des attaques du Pokémon Défenseur sont réduits de 30 (avant application de la Faiblesse et de la Résistance).",
es: "Durante el próximo turno de tu rival, cualquier daño infligido por ataques del Pokémon Defensor se reduce en 30 (antes de aplicar Debilidad y Resistencia).",
it: "Durante il prossimo turno del tuo avversario, i danni inflitti dagli attacchi del Pokémon difensore sono ridotti di 30, prima di aver applicato debolezza e resistenza.",
pt: "Durante a próxima vez de jogar do seu oponente, qualquer dano causado por ataques pelo Pokémon Defensor será reduzido em 30 (antes da aplicação de Fraqueza e Resistência).",
de: "Während des nächsten Zuges deines Gegners wird Schaden, der durch Angriffe des Verteidigenden Pokémon zugefügt wird, um 30 Schadenspunkte reduziert (bevor Schwäche und Resistenz verrechnet werden)."
},
damage: 30,
@ -49,12 +63,17 @@ const card: Card = {
name: {
en: "Psyburn",
fr: "Brûlure Psy",
es: "Psicoquemadura",
it: "Psicobrucia",
pt: "Queimadura Psíquica",
de: "Psychoverbrennung"
},
damage: 120,
},
],
weaknesses: [
{
type: "Psychic",
@ -63,9 +82,7 @@ const card: Card = {
],
retreat: 2,
stage: "Basic"
}
export default card