1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +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,61 @@
import { Card } from '../../../interfaces'
import Set from '../BREAKthrough'
const card: Card = {
name: {
en: "M Mewtwo-EX",
fr: "Méga-Mewtwo-EEX",
},
illustrator: "5ban Graphics",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
150,
],
hp: 230,
types: [
"Psychic",
],
evolveFrom: {
en: "Mewtwo-EX",
fr: "Mewtwo-EX",
},
stage: "MEGA",
attacks: [
{
cost: [
"Psychic",
"Fightning",
"Fightning",
"Colorless",
],
name: {
en: "Vanishing Strike",
fr: "Frappe Fuyante",
},
effect: {
en: "If there is any Stadium card in play, this attack does 50 more damage, and this attack's damage isn't affected by Resistance or any effects on your opponent's Active Pokémon.",
fr: "S'il y a une carte Stade en jeu, cette attaque inflige 50 dégâts supplémentaires, et les dégâts de cette attaque ne sont pas affectés par la Résistance ou tout effet en action sur le Pokémon Actif de votre adversaire.",
},
damage: 150,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 3,
}
export default card