mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 09:59:19 +00:00
Sword & Shield Fixes (#84)
* 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
This commit is contained in:
@ -12,14 +12,64 @@ const card: Card = {
|
||||
},
|
||||
|
||||
name: {
|
||||
en: "Garbodor VMAX"
|
||||
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"
|
||||
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
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user