1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 13:22:15 +00:00

62 lines
850 B
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 '../Promos'
const card: Card = {
name: {
en: "Mew-EX",
},
illustrator: "Eske Yoshinob",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
151,
],
hp: 120,
types: [
"Psychic",
],
suffix: "EX",
abilities: [
{
type: "Ability",
name: {
en: "Versatile",
},
effect: {
en: "This Pokémon can use the attacks of any Pokémon in play (both yours and your opponent's). (You still need the necessary Energy to use each attack.)",
},
},
],
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Replace",
},
effect: {
en: "Move as many Energy attached to your Pokémon to your other Pokémon in any way you like.",
},
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card