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

52 lines
873 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 "../SV6s"
const card: Card = {
set: Set,
name: {
id: "Blissey ex"
},
illustrator: "Iwamoto05",
category: "Pokemon",
hp: 300,
types: ["Colorless"],
stage: "Stage1",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
id: "Happy Switch"
},
effect: {
id: "Dapat digunakan 1 kali pada giliran sendiri. Pilih 1 Energi Dasar yang dikenakan pada Pokémon di Arena sendiri, lalu pindahkan ke Pokémon sendiri lainnya."
}
}],
attacks: [{
name: {
id: "Membalas Budi"
},
effect: {
id: "Pemain dapat mengambil kartu dari atas Deck hingga jumlah Kartu Pegangan sendiri menjadi 6 lembar."
},
damage: 180,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 4,
regulationMark: "H"
}
export default card