mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 18:09:19 +00:00
Finished Complete Rework of the Database
This commit is contained in:
64
data/Diamond & Pearl/DP Black Star Promos/DP51.ts
Normal file
64
data/Diamond & Pearl/DP Black Star Promos/DP51.ts
Normal file
@ -0,0 +1,64 @@
|
||||
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
|
Reference in New Issue
Block a user