1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-16 21:49:53 +00:00

81 lines
1.2 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 '../Majestic Dawn'
const card: Card = {
name: {
en: "Mewtwo",
fr: "Mewtwo",
},
illustrator: "Kent Kanetsuna",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
150,
],
hp: 90,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
name: {
en: "Energy Absorption",
fr: "Absorption d'énergie",
},
effect: {
en: "Search your discard pile for up to 2 Energy cards and attach them to Mewtwo.",
fr: "Choisissez dans votre pile de défausse jusqu'à 2 cartes Énergie et attachez-les à Mewtwo.",
},
},
{
cost: [
"Psychic",
],
name: {
en: "Recover",
fr: "Soin",
},
effect: {
en: "Discard a Psychic Energy attached to Mewtwo and remove 6 damage counters from Mewtwo.",
fr: "Défaussez une Énergie Psychic attachée à Mewtwo et retirez-lui 6 marqueurs de dégât.",
},
},
{
cost: [
"Psychic",
"Psychic",
"Colorless",
],
name: {
en: "Psyburn",
fr: "Brûlure psy",
},
damage: 60,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card