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

71 lines
1.0 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 '../DP Black Star Promos'
const card: Card = {
name: {
en: "Rayquaza C",
},
illustrator: undefined,
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
384,
],
hp: 120,
types: [
"Colorless",
],
stage: "LEVEL-UP",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Dragon Spirit",
},
effect: {
en: "If Rayquaza is your Active Pokémon and is damaged but not Knocked Out by an opponent's attack, you may search your discard pile for an Energy card and attach it to Rayquaza .",
},
},
],
attacks: [
{
cost: [
"Water",
"Psychic",
"Fighting",
"Colorless",
],
name: {
en: "Final Blowup",
},
effect: {
en: "Discard all Energy attached to Rayquaza . Ignore this effect if you have no cards in your hand.",
},
damage: 200,
},
],
weaknesses: [
{
type: "Colorless",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
}
export default card