mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
74 lines
1.7 KiB
TypeScript
74 lines
1.7 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rebel Clash'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
en: "Malamar VMAX",
|
||
fr: "Sepiatroce VMAX",
|
||
es: "Malamar VMAX",
|
||
it: "Malamar VMAX",
|
||
pt: "Malamar VMAX",
|
||
de: "Calamanero VMAX"
|
||
},
|
||
|
||
illustrator: "5ban Graphics",
|
||
rarity: "Secret Rare",
|
||
category: "Pokemon",
|
||
hp: 310,
|
||
types: ["Darkness"],
|
||
|
||
evolveFrom: {
|
||
en: "Malamar V",
|
||
fr: "Sepiatroce-V",
|
||
es: "Malamar V",
|
||
it: "Malamar-V",
|
||
pt: "Malamar V",
|
||
de: "Calamanero-V"
|
||
},
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Max Jammer",
|
||
fr: "Bloquomax",
|
||
es: "Maxiobstrucción",
|
||
it: "Dynablocco",
|
||
pt: "Bloqueador Max",
|
||
de: "Dyna-Störer"
|
||
},
|
||
|
||
effect: {
|
||
en: "Your opponent reveals their hand. Choose a card you find there and put it on the bottom of their deck.",
|
||
fr: "Votre adversaire dévoile sa main. Choisissez-y une carte, puis placez-la en dessous de son deck.",
|
||
es: "Tu rival enseña las cartas de su mano. Elige 1 carta que encuentres entre ellas y ponla en la parte inferior de su baraja.",
|
||
it: "Il tuo avversario mostra le carte che ha in mano. Scegline una e mettila in fondo al suo mazzo.",
|
||
pt: "Seu oponente revela a própria mão. Escolha 1 carta que encontrar lá e coloque-a como a carta de baixo do baralho dele(a).",
|
||
de: "Dein Gegner zeigt dir seine Handkarten. Wähle 1 Karte, die du dort findest, und lege sie unter sein Deck."
|
||
},
|
||
|
||
damage: 180,
|
||
cost: ["Darkness", "Darkness", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Grass",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: false,
|
||
holo: true,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "VMAX",
|
||
|
||
}
|
||
|
||
export default card
|