mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-22 20:09:18 +00:00
74 lines
2.4 KiB
TypeScript
74 lines
2.4 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../Space-Time Smackdown"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Bronzong",
|
||
fr: "Archéodong",
|
||
es: "Bronzong",
|
||
it: "Bronzong",
|
||
de: "Bronzong",
|
||
'pt-br': "Bronzong",
|
||
ko: "동탁군"
|
||
},
|
||
|
||
illustrator: "Yuka Morii",
|
||
rarity: "Two Diamond",
|
||
category: "Pokemon",
|
||
hp: 120,
|
||
types: ["Metal"],
|
||
|
||
evolveFrom: {
|
||
en: "Bronzor"
|
||
},
|
||
|
||
description: {
|
||
en: "In ages past, this Pokémon was revered as a bringer of rain. It was found buried in the ground.",
|
||
fr: "Il a longtemps été vénéré pour avoir apporté\nla pluie. On le trouve parfois enterré dans le sol.",
|
||
es: "Antaño se adoraba a este Pokémon para\nque propiciara lluvias abundantes. A veces,\npuede encontrarse enterrado bajo tierra.",
|
||
it: "È stato venerato per secoli come Pokémon che\nporta la pioggia. A volte lo si trova sepolto nel terreno.",
|
||
de: "Vor Urzeiten wurden sie als Regenmacher verehrt.\nManchmal findet man eines von ihnen im Boden vergraben.",
|
||
'pt-br': "Nas idades antigas, este Pokémon era reverenciado\ncomo aquele que fazia chover. Ele foi descoberto\nenterrado no chão.",
|
||
ko: "비구름을 부르는 포켓몬으로\n아주 옛날부터 떠받들어졌다.\n가끔 땅에 묻혀 있다."
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Guard Press",
|
||
fr: "Pression de Garde",
|
||
es: "Presión de Guardia",
|
||
it: "Pressadifesa",
|
||
de: "Schutzdruck",
|
||
'pt-br': "Aperto Protetor",
|
||
ko: "가드프레스"
|
||
},
|
||
|
||
damage: 60,
|
||
cost: ["Metal", "Metal", "Colorless"],
|
||
|
||
effect: {
|
||
en: "During your opponent's next turn, this Pokémon takes −20 damage from attacks.",
|
||
fr: "Pendant le prochain tour de votre adversaire, ce Pokémon subit − 20 dégâts provenant des attaques.",
|
||
es: "Durante el próximo turno de tu rival, los ataques hacen -20 puntos de daño a este Pokémon.",
|
||
it: "Durante il prossimo turno del tuo avversario, questo Pokémon subisce -20 danni dagli attacchi.",
|
||
de: "Während des nächsten Zuges deines Gegners werden diesem Pokémon durch Attacken − 20 Schadenspunkte zugefügt.",
|
||
'pt-br': "Durante o próximo turno do seu oponente, este Pokémon receberá −20 pontos de dano de ataques.",
|
||
ko: "상대의 다음 차례에 이 포켓몬이 받는 기술의 데미지를 -20한다."
|
||
}
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "+20"
|
||
}],
|
||
|
||
retreat: 3,
|
||
boosters: ["dialga"]
|
||
}
|
||
|
||
export default card
|