mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 00:49:18 +00:00
64
data/Sword & Shield/Pokémon GO/030.ts
Normal file
64
data/Sword & Shield/Pokémon GO/030.ts
Normal file
@ -0,0 +1,64 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Pokémon GO"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Mewtwo V",
|
||||
fr: "Mewtwo V",
|
||||
es: "Mewtwo V",
|
||||
it: "Mewtwo V",
|
||||
pt: "Mewtwo V",
|
||||
de: "Mewtu V"
|
||||
},
|
||||
|
||||
rarity: "Ultra Rare",
|
||||
category: "Pokemon",
|
||||
hp: 220,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
suffix: "V",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Super Psy Bolt",
|
||||
fr: "Super Psy",
|
||||
es: "Superrayo Psi",
|
||||
it: "Superpsico",
|
||||
pt: "Super-raio Psíquico",
|
||||
de: "Super-Psischlag"
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}, {
|
||||
cost: ["Psychic", "Psychic", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Transfer Break",
|
||||
fr: "Rupture Transfert",
|
||||
es: "Golpe Traspaso",
|
||||
it: "Sfondatransfer",
|
||||
pt: "Transferência Intensa",
|
||||
de: "Transferbruch"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Move an Energy from this Pokémon to 1 of your Benched Pokémon.",
|
||||
fr: "Déplacez une Énergie de ce Pokémon vers l'un de vos Pokémon de Banc.",
|
||||
es: "Mueve 1 Energía de este Pokémon a 1 de tus Pokémon en Banca.",
|
||||
it: "Sposta un'Energia da questo Pokémon a uno di quelli nella tua panchina.",
|
||||
pt: "Mova 1 Energia deste Pokémon para 1 dos seus Pokémon no Banco.",
|
||||
de: "Verschiebe 1 Energie von diesem Pokémon auf 1 Pokémon auf deiner Bank."
|
||||
},
|
||||
|
||||
damage: 160
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user