1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-28 10:49:55 +00:00

71 lines
863 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 '../Legendary Treasures'
const card: Card = {
name: {
en: "Black Kyurem-EX",
},
illustrator: "Eske Yoshinob",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
646,
],
hp: 180,
types: [
"Dragon",
],
suffix: "EX",
attacks: [
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Dragon Fang",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
},
damage: 60,
},
{
cost: [
"Water",
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Freeze Shock",
},
effect: {
en: "This Pokémon can't attack during your next turn.",
},
damage: 150,
},
],
weaknesses: [
{
type: "Dragon",
value: "×2"
},
],
}
export default card