1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

56 lines
910 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 "../SV5s"
const card: Card = {
set: Set,
name: {
id: "Bronzong"
},
illustrator: "Katsunori Sato",
category: "Pokemon",
hp: 110,
types: ["Psychic"],
description: {
id: "Bronzong dipuja sejak zaman dahulu sebagai Pokémon pemanggil awan hujan. Kadang Pokémon ini terkubur di permukaan tanah."
},
stage: "Stage1",
attacks: [{
name: {
id: "Pengacak Evolusi"
},
effect: {
id: "Pada giliran lawan berikutnya, lawan tidak dapat melakukan evolusi dengan memasukkan Pokémon dari Kartu Pegangan."
},
damage: 30,
cost: ["Psychic"]
}, {
name: {
id: "Psikokinesis Super"
},
damage: 100,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 3,
regulationMark: "H"
}
export default card