mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
70 lines
1.9 KiB
TypeScript
70 lines
1.9 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Shining Fates'
|
||
|
||
const card: Card = {
|
||
dexId: [877],
|
||
set: Set,
|
||
|
||
name: {
|
||
fr: "Morpeko VMAX",
|
||
en: "Morpeko VMAX",
|
||
es: "Morpeko VMAX",
|
||
it: "Morpeko VMAX",
|
||
pt: "Morpeko VMAX",
|
||
de: "Morpeko VMAX"
|
||
},
|
||
|
||
illustrator: "PLANETA Mochizuki",
|
||
rarity: "Holo Rare VMAX",
|
||
category: "Pokemon",
|
||
hp: 300,
|
||
types: ["Lightning"],
|
||
|
||
evolveFrom: {
|
||
fr: "Morpeko-V",
|
||
en: "Morpeko V"
|
||
},
|
||
|
||
attacks: [{
|
||
name: {
|
||
fr: "Déchargeomax",
|
||
en: "Max Discharge",
|
||
es: "Maxichispazo",
|
||
it: "Dynascarica",
|
||
pt: "Descarga Max",
|
||
de: "Dyna-Ladungsstoß"
|
||
},
|
||
|
||
effect: {
|
||
fr: "Cette attaque inflige aussi 20 dégâts à chacun des Pokémon de Banc de votre adversaire. (N'appliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
|
||
en: "This attack also does 20 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||
es: "Este ataque también hace 20 puntos de daño a cada uno de los Pokémon en Banca de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
|
||
it: "Questo attacco infligge anche 20 danni a ciascuno dei Pokémon nella panchina del tuo avversario. Non applicare debolezza e resistenza ai Pokémon in panchina.",
|
||
pt: "Este ataque também causa 20 pontos de dano a cada um dos Pokémon no Banco do seu oponente (não aplique Fraqueza e Resistência aos Pokémon no Banco).",
|
||
de: "Diese Attacke fügt auch jedem Pokémon auf der Bank deines Gegners 20 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
|
||
},
|
||
|
||
damage: 180,
|
||
cost: ["Lightning", "Lightning", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: false,
|
||
holo: true,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "VMAX"
|
||
}
|
||
|
||
export default card
|