1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 15:12:10 +00:00
Florian Bouillon 9138eedb16
Add swsh variants (#42)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Added the rest of the SWSH variants

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:34:21 +00:00

87 lines
1.8 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 '../Rebel Clash'
const card: Card = {
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"
},
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 opponents 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
}
}
export default card