mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +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
76 lines
1.2 KiB
TypeScript
76 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Evolving Skies'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: false,
|
||
holo: true,
|
||
firstEdition: false
|
||
},
|
||
|
||
name: {
|
||
en: "Garbodor VMAX",
|
||
fr: "Miasmax VMAX",
|
||
es: "Garbodor VMAX",
|
||
it: "Garbodor VMAX",
|
||
pt: "Garbodor VMAX",
|
||
de: "Deponitox VMAX"
|
||
},
|
||
|
||
rarity: "Secret Rare",
|
||
category: "Pokemon",
|
||
hp: 330,
|
||
types: ["Darkness"],
|
||
stage: "VMAX",
|
||
illustrator: "5ban Graphics",
|
||
dexId: [569],
|
||
|
||
evolveFrom: {
|
||
en: "Garbodor V",
|
||
fr: "Miasmax-V",
|
||
es: "Garbodor V",
|
||
it: "Garbodor-V",
|
||
pt: "Garbodor V",
|
||
de: "Deponitox-V"
|
||
},
|
||
|
||
abilities: [{
|
||
type: "Ability",
|
||
|
||
name: {
|
||
en: "Rubbish Collecting"
|
||
},
|
||
|
||
effect: {
|
||
en: "This Pokémon may have up to 2 Pokémon Tools attached to it. If it loses this Ability, discard Pokémon Tools from it until only 1 remains."
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: ["Darkness", "Colorless"],
|
||
|
||
name: {
|
||
en: "G-Max Malodor"
|
||
},
|
||
|
||
effect: {
|
||
en: "Your opponent's Active Pokémon is now Poisoned. During your opponent's next turn, that Pokémon can't retreat."
|
||
},
|
||
|
||
damage: 120
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 3,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card
|