1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 22:02:15 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

101 lines
2.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Ultra Prism'
const card: Card = {
name: {
en: "Bronzong",
fr: "Archéodong",
es: "Bronzong",
it: "Bronzong",
pt: "Bronzong",
de: "Bronzong"
},
illustrator: "Kagemaru Himeno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
437,
],
hp: 110,
types: [
"Metal",
],
evolveFrom: {
en: "Bronzor",
fr: "Archéomire",
},
stage: "Stage1",
attacks: [
{
cost: [
"Metal",
],
name: {
en: "Psy Bolt",
fr: "Choc Mental",
es: "Rayo Psi",
it: "Psico",
pt: "Raio Psíquico",
de: "Mentale Blockade"
},
effect: {
en: "Flip a coin. If heads, your opponents Active Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si cest face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Paralizado.",
it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene paralizzato.",
pt: "Jogue 1 moeda. Se sair cara, o Pokémon Ativo do seu oponente será Paralisado.",
de: "Wirf 1 Münze. Bei Kopf ist das Aktive Pokémon deines Gegners jetzt paralysiert."
},
damage: 20,
},
{
cost: [
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Psychic Resonance",
fr: "Résonance Psychique",
es: "Resonancia Psíquica",
it: "Risonanza Psichica",
pt: "Ressonância Psíquica",
de: "Psycho-Resonanz"
},
effect: {
en: "If your opponent has any Psychic Pokémon in play, this attack does 60 more damage.",
fr: "Si votre adversaire a un Pokémon Psychic en jeu, cette attaque inflige 60 dégâts supplémentaires.",
es: "Si tu rival tiene algún Pokémon Psychic en juego, este ataque hace 60 puntos de daño más.",
it: "Se il tuo avversario ha dei Pokémon Psychic in gioco, questo attacco infligge 60 danni in più.",
pt: "Se o seu oponente tiver algum Pokémon Psychic em jogo, este ataque causará 60 pontos de dano a mais.",
de: "Wenn dein Gegner mindestens 1 Psychic-Pokémon im Spiel hat, fügt diese Attacke 60 Schadenspunkte mehr zu."
},
damage: "60+",
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 3,
}
export default card