1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon 2be1cb2be9
feat: Add Fusion Strike (#162)
Signed-off-by: Avior <github@avior.me>
2021-11-12 12:42:38 +01:00

69 lines
1.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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 "../Fusion Strike"
const card: Card = {
set: Set,
name: {
en: "Gengar VMAX",
fr: "Ectoplasma VMAX",
es: "Gengar VMAX",
it: "Gengar VMAX",
pt: "Gengar VMAX",
de: "Gengar VMAX"
},
rarity: "Secret Rare",
category: "Pokemon",
hp: 320,
types: ["Darkness"],
evolveFrom: {
en: "Gengar V",
fr: "Ectoplasma-V",
es: "Gengar V",
it: "Gengar-V",
pt: "Gengar V",
de: "Gengar-V"
},
stage: "VMAX",
retreat: 3,
regulationMark: "E",
illustrator: "sowsow",
attacks: [{
cost: ["Darkness", "Darkness"],
name: {
en: "Fear and Panic"
},
damage: "60×",
effect: {
en: "This attack does 60 damage for each of your opponent's Pokémon V and Pokémon-GX in play."
}
}, {
cost: ["Darkness", "Darkness", "Darkness"],
name: {
en: "G-Max Swallow Up"
},
damage: 250,
effect: {
en: "During your next turn, this Pokémon can't attack."
}
}],
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card