import { Card } from '../../../interfaces' import Set from '../Neo Revelation' const card: Card = { name: { en: "Celebi", }, illustrator: "Hironobu Yoshida", rarity: "Rare", category: "Pokemon", set: Set, dexId: [ 251, ], hp: 50, types: [ "Psychic", ], stage: "Basic", abilities: [ { type: "Poke-POWER", name: { en: "Time Travel", }, effect: { en: "If an opponent's attack would Knock Out Celebi, flip a coin. If heads, Celebi is not Knocked Out and you shuffle it and all cards attached to it into your deck. This power doesn't work if Celebi is already Asleep, Confused, or Paralyzed.", }, }, ], attacks: [ { cost: [ "Psychic", ], name: { en: "Psychic Damage", }, effect: { en: "Flip 3 coins. For each heads, put 1 damage counter on the Defending Pokémon.", }, }, ], weaknesses: [ { type: "Psychic", value: "×2" }, ], } export default card