1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,64 @@
import { Card } from '../../../interfaces'
import Set from '../Neo Destiny'
const card: Card = {
name: {
en: "Shining Celebi",
},
illustrator: "Hironobu Yoshida",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
251,
],
hp: 50,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Healing Water",
},
effect: {
en: "Remove a number of damage counters from 1 of your Benched Pokémon equal to the number of Energy cards attached to Shining Celebi. If the Pokémon has fewer damage counters than that, remove all of them.",
},
},
{
cost: [
"Grass",
"Psychic",
],
name: {
en: "Miracle Leaf",
},
effect: {
en: "Flip a number of coins equal to the number of Energy attached to the Defending Pokémon. If you get 1 or more heads, the Defending Pokémon is now Asleep, Confused, or Poisoned (your choice).",
},
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card