1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 06:42:10 +00:00

46 lines
642 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Stellar Crown"
const card: Card = {
set: Set,
name: {
en: "Mewtwo",
fr: "Mewtwo",
es: "Mewtwo",
it: "Mewtwo",
pt: "Mewtwo",
de: "Mewtu"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 130,
types: ["Psychic"],
stage: "Basic",
attacks: [{
cost: ["Psychic", "Psychic", "Colorless"],
name: {
en: "Super Psy Bolt",
fr: "Super Psy",
es: "Superrayo Psi",
it: "Superpsico",
pt: "Super-raio Psíquico",
de: "Super-Psischlag"
},
damage: 100
}],
retreat: 2,
regulationMark: "H",
variants: {
holo: false
}
}
export default card