1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 13:52:13 +00:00

75 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Cosmic Eclipse'
const card: Card = {
name: {
en: "Black Kyurem",
fr: "Kyurem Noir",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
646,
],
hp: 130,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Frozen Wings",
fr: "Ailes Gelées",
},
effect: {
en: "Discard a Special Energy from your opponent's Active Pokémon.",
fr: "Défaussez une Énergie spéciale du Pokémon Actif de votre adversaire.",
},
damage: 30,
},
{
cost: [
"Water",
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Dazzling Blizzard",
fr: "Blizzard Éblouissant",
},
effect: {
en: "If you have any Stadium card in play, this attack does 100 more damage.",
fr: "Si vous avez une carte Stade en jeu, cette attaque inflige 100 dégâts supplémentaires.",
},
damage: 100,
},
],
weaknesses: [
{
type: "Metal",
value: "×2"
},
],
retreat: 3,
}
export default card