1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

55 lines
1.0 KiB
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 "../SV3s"
const card: Card = {
set: Set,
name: {
id: "Zekrom"
},
illustrator: "Shiburingaru",
category: "Pokemon",
hp: 130,
types: ["Lightning"],
description: {
id: "Zekrom membuat listrik menggunakan ekornya. Pokémon ini menyembunyikan seluruh tubuhnya di awan petir dan terbang di langit Daerah Unova."
},
stage: "Basic",
attacks: [{
name: {
id: "Crush Short"
},
effect: {
id: "Sebelum memberikan kerusakan, buang Pokémon Tool yang dikenakan pada Pokémon Bertarung lawan ke Trash."
},
damage: 20,
cost: ["Colorless"]
}, {
name: {
id: "Sambaran Petir"
},
effect: {
id: "Serangan ini juga memberikan kerusakan sejumlah 40 kepada 1 Pokémon Cadangan sendiri. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]"
},
damage: 130,
cost: ["Lightning", "Lightning", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card