1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00

74 lines
1.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Legends Awakened'
const card: Card = {
name: {
en: "Mesprit",
fr: "Créfollet",
de: "Vesprit"
},
illustrator: "Shizurow",
rarity: "Rare Holo LV.X",
category: "Pokemon",
set: Set,
dexId: [
481,
],
hp: 90,
types: [
"Psychic",
],
stage: "LEVEL-UP",
attacks: [
{
name: {
en: "Healing Look",
fr: "Regard guérisseur",
de: "Heilender Blick"
},
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.",
de: "Entferne 3 Schadensmarken von jedem Pokémon auf deiner Bank."
},
},
{
cost: [
"Psychic",
"Psychic",
],
name: {
en: "Supreme Blast",
fr: "Explosion suprême",
de: "Allmächtiger Schuss"
},
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.",
de: "Dieser Angriff hat keine Auswirkungen, wenn du nicht auch Selfe LV.X und Tobutz LV.X im Spiel hast. Lege alle Energien, die an Vesprit LV.X angelegt sind, auf deinen Ablagestapel."
},
damage: 200,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card