1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 1a98a6022b
Fixed GX being with a dash while it isn't on the card (#58)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-16 11:05:52 +02:00

94 lines
2.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Detective Pikachu'
const card: Card = {
name: {
en: "Mewtwo",
fr: "Mewtwo",
es: "Mewtwo",
it: "Mewtwo",
pt: "Mewtwo",
de: "Mewtu"
},
illustrator: "MPC Film",
rarity: "Ultra Rare",
category: "Pokemon",
set: Set,
dexId: [
150,
],
hp: 130,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Psyjack",
fr: "Détournement Psy",
es: "Secuestro Psíquico",
it: "Sequestro Psichico",
pt: "Tomada Psíquica",
de: "Mentale Entführung"
},
effect: {
en: "Choose 1 of your opponents Active Pokémons attacks. That Pokémon cant use that attack during your opponents next turn.",
fr: "Choisissez lune des attaques du Pokémon Actif de votre adversaire. Ce Pokémon ne peut pas utiliser cette attaque pendant le prochain tour de votre adversaire.",
es: "Elige 1 de los ataques del Pokémon Activo de tu rival. Ese Pokémon no puede usar ese ataque durante el próximo turno de tu rival.",
it: "Scegli un attacco del Pokémon attivo del tuo avversario. Durante il prossimo turno del tuo avversario, quel Pokémon non potrà utilizzarlo.",
pt: "Escolha 1 dos ataques do Pokémon Ativo do seu oponente. Aquele Pokémon não poderá usar aquele ataque durante a próxima vez de jogar do seu oponente.",
de: "Wähle 1 Attacke des Aktiven Pokémon deines Gegners. Jenes Pokémon kann jene Attacke während des nächsten Zuges deines Gegners nicht einsetzen."
},
damage: 30,
},
{
cost: [
"Psychic",
"Psychic",
"Colorless",
],
name: {
en: "Break Burn",
fr: "Brûlure Brisante",
es: "Quiebre Quemadura",
it: "Sconfitta Cocente",
pt: "Queimadura Destruidora",
de: "Bruchbrand"
},
effect: {
en: "Discard 2 Psychic Energy from this Pokémon.",
fr: "Défaussez 2 Énergies Psychic de ce Pokémon.",
es: "Descarta 2 Energías Psychic de este Pokémon.",
it: "Scarta due Energie Psychic assegnate a questo Pokémon.",
pt: "Descarte 2 Energias Psychic deste Pokémon.",
de: "Lege 2 Psychic-Energien von diesem Pokémon auf deinen Ablagestapel."
},
damage: 130,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 2,
}
export default card