1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 09:59: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,68 @@
import { Card } from '../../../interfaces'
import Set from '../Legends Awakened'
const card: Card = {
name: {
en: "Mesprit",
fr: "Créfollet",
},
illustrator: "Shizurow",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
481,
],
hp: 90,
types: [
"Psychic",
],
stage: "LEVEL-UP",
attacks: [
{
name: {
en: "Healing Look",
fr: "Regard guérisseur",
},
effect: {
en: "Remove 3 damage counters from each of your Benched Pokémon.",
fr: "Retirez à chacun de vos Pokémon de Banc 3 marqueurs de dégât.",
},
},
{
cost: [
"Psychic",
"Psychic",
],
name: {
en: "Supreme Blast",
fr: "Explosion suprême",
},
effect: {
en: "If you don't have Uxie LV.X and Azelf LV.X in play, this attack does nothing. Discard all Energy attached to Mesprit.",
fr: "Si vous n'avez pas de Créhelf NIV.X et Créfadet NIV.X en jeu, cette attaque est sans effet. Défaussez toutes les Énergies attachées à Créfollet.",
},
damage: 200,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card