1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-08 02:07:50 +00:00

65 lines
843 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 '../DP Black Star Promos'
const card: Card = {
name: {
en: "Mewtwo",
},
illustrator: "Shizurow",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
150,
],
hp: 120,
types: [
"Psychic",
],
stage: "LEVEL-UP",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Psybarrier",
},
effect: {
en: "Prevent all effects of attacks, including damage, done to Mewtwo by your opponent's Pokémon that isn't an Evolved Pokémon.",
},
},
],
attacks: [
{
cost: [
"Psychic",
"Psychic",
"Colorless",
],
name: {
en: "Giga Burn",
},
effect: {
en: "Discard all Energy attached to Mewtwo.",
},
damage: 120,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card