mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 04:12:11 +00:00
98 lines
2.1 KiB
TypeScript
98 lines
2.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Rebel Clash'
|
||
|
||
const card: Card = {
|
||
dexId: [569],
|
||
name: {
|
||
en: "Garbodor",
|
||
fr: "Miasmax",
|
||
es: "Garbodor",
|
||
it: "Garbodor",
|
||
pt: "Garbodor",
|
||
de: "Deponitox"
|
||
},
|
||
|
||
illustrator: "AKIRA EGAWA",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
hp: 120,
|
||
|
||
evolveFrom: {
|
||
en: "Trubbish",
|
||
fr: "Miamiasme",
|
||
es: "Trubbish",
|
||
it: "Trubbish",
|
||
pt: "Trubbish",
|
||
de: "Unratütox"
|
||
},
|
||
|
||
abilities: [
|
||
{
|
||
type: "Ability",
|
||
name: {
|
||
en: "Poisonous Puddle",
|
||
fr: "Flaque Toxique",
|
||
es: "Charco Venenoso",
|
||
it: "Pozza Velenosa",
|
||
pt: "Chorume Venenoso",
|
||
de: "Giftpfütze"
|
||
},
|
||
effect: {
|
||
en: "Once during your turn, if a Stadium is in play, you may make your opponent's Active Pokémon Poisoned.",
|
||
fr: "Une fois pendant votre tour, si un Stade est en jeu, vous pouvez laisser le Pokémon Actif de votre adversaire Empoisonné.",
|
||
es: "Una vez durante tu turno, si hay un Estadio en juego, puedes dejar al Pokémon Activo de tu rival Envenenado.",
|
||
it: "Una sola volta durante il tuo turno, se c'è in gioco una carta Stadio, puoi lasciare il Pokémon attivo del tuo avversario avvelenato.",
|
||
pt: "Uma vez durante o seu turno, se um Estádio estiver em jogo, você poderá deixar o Pokémon Ativo do seu oponente Envenenado.",
|
||
de: "Einmal während deines Zuges, wenn eine Stadionkarte im Spiel ist, kannst du das Aktive Pokémon deines Gegners vergiften."
|
||
},
|
||
},
|
||
],
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Darkness",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Sludge Bomb",
|
||
fr: "Bombe Beurk",
|
||
es: "Bomba Lodo",
|
||
it: "Fangobomba",
|
||
pt: "Bomba de Lodo",
|
||
de: "Matschbombe"
|
||
},
|
||
damage: 80,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
retreat: 2,
|
||
types: ["Darkness"],
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
description: {
|
||
en: "This Pokémon eats trash, which turns into poison inside its body. The main component of the poison depends on what sort of trash was eaten."
|
||
}
|
||
}
|
||
|
||
export default card
|