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

60 lines
991 B
TypeScript
Raw Permalink 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 "../SV3s"
const card: Card = {
set: Set,
name: {
id: "Zacian"
},
illustrator: "Tonji Matsuno",
category: "Pokemon",
hp: 120,
types: ["Metal"],
description: {
id: "Penampilan Zacian yang menebas segala hal membuatnya dikenal sebagai Pedang Raja Peri. Pokémon ini ditakuti dan dipuja oleh kawan maupun lawan."
},
stage: "Basic",
attacks: [{
name: {
id: "Raungan Besi"
},
effect: {
id: "Pilih 1 lembar Energi Dasar {Logam} dari Trash sendiri, lalu kenakan pada Pokémon Cadangan."
},
damage: 30,
cost: ["Metal"]
}, {
name: {
id: "Pedang Keberanian"
},
effect: {
id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan."
},
damage: 130,
cost: ["Metal", "Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 2,
regulationMark: "G"
}
export default card