1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-14 20:49:54 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

82 lines
1.3 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 '../Unbroken Bonds'
const card: Card = {
name: {
en: "Celesteela-GX",
},
illustrator: "PLANETA Igarashi",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
797,
],
hp: 200,
types: [
"Colorless",
],
suffix: "GX",
abilities: [
{
type: "Ability",
name: {
en: "Force Canceler",
},
effect: {
en: "As long as this Pokémon is your Active Pokémon, prevent all effects of your opponent's GX attacks, including damage, done to your Pokémon.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Power Cyclone",
},
effect: {
en: "Move an Energy from this Pokémon to 1 of your Benched Pokémon.",
},
damage: 110,
},
{
cost: [
"Colorless",
],
name: {
en: "Discovery-GX",
},
effect: {
en: "Count your Prize cards and put them into your hand. Then, take that many cards from the top of your deck and put them face down as your Prize cards. If you don't have that many cards in your deck, this attack does nothing. (You can't use more than 1 GX attack in a game.)",
},
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
}
export default card