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

51 lines
796 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 "../SV8s"
const card: Card = {
set: Set,
name: {
id: "Kyurem Hitam ex"
},
illustrator: "N-DESIGN Inc.",
category: "Pokemon",
hp: 230,
types: ["Water"],
stage: "Basic",
suffix: "EX",
attacks: [{
name: {
id: "Ice Age"
},
effect: {
id: "Jika Pokémon Bertarung lawan adalah Pokémon {Naga}, ubah kondisi Pokémon tersebut menjadi Lumpuh."
},
damage: 90,
cost: ["Colorless", "Colorless", "Colorless"]
}, {
name: {
id: "Black Frost"
},
effect: {
id: "Pokémon ini juga menerima kerusakan sejumlah 30."
},
damage: 250,
cost: ["Water", "Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card