1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

65 lines
839 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 '../DP Black Star Promos'
const card: Card = {
name: {
en: "Cresselia",
},
illustrator: "Wataru Kawahara",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
488,
],
hp: 90,
types: [
"Psychic",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Lunar Aura",
},
effect: {
en: "If you have Darkrai in play, remove 1 damage counter from Cresselia between turns.",
},
},
],
attacks: [
{
cost: [
"Psychic",
"Psychic",
"Colorless",
],
name: {
en: "Lunar Flight",
},
effect: {
en: "Does 80 damage minus 10 damage for each damage counter on Cresselia.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card