1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-26 13:59:18 +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,70 @@
import { Card } from '../../../interfaces'
import Set from '../Boundaries Crossed'
const card: Card = {
name: {
en: "Cresselia-EX",
fr: "Cresselia-EX",
},
illustrator: "5ban Graphics",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
488,
],
hp: 170,
types: [
"Psychic",
],
suffix: "EX",
abilities: [
{
type: "Ability",
name: {
en: "Sparkling Particles",
fr: "Particules Étincelantes",
},
effect: {
en: "At any time between turns, heal 10 damage from this Pokémon.",
fr: "N'importe quand entre chaque tour, soignez 10 dégâts à ce Pokémon.",
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Psychic Protection",
fr: "Protection Psy",
},
effect: {
en: "During your opponent's next turn, this Pokémon has no Weakness.",
fr: "Pendant le prochain tour de votre adversaire, ce Pokémon n'a pas de Faiblesse.",
},
damage: 90,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card