1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon 829d78fa6f
Added Celebrations Datas (#124)
Signed-off-by: Avior <github@avior.me>
2021-10-26 17:21:38 +02:00

51 lines
851 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Celebrations'
const card: Card = {
set: Set,
name: {
en: "Mew ex"
},
illustrator: "Ryo Ueda",
rarity: "Ultra Rare",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
stage: "Basic",
suffix: "EX",
abilities: [{
type: "Poke-BODY",
name: {
en: "Versatile"
},
effect: {
en: "Mew ex can use the attacks of all Pokémon in play as its own. (You still need the necessary Energy to use each attack.)"
}
}],
attacks: [{
name: {
en: "Power Move"
},
effect: {
en: "Search your deck for an Energy card and attach it to Mew ex. Shuffle your deck afterward. Then, you may switch Mew ex with 1 of your Benched Pokémon."
},
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Psychic",
value: ""
}],
retreat: 1
}
export default card