1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

55 lines
990 B
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 "../SV4s"
const card: Card = {
set: Set,
name: {
id: "Garbodor"
},
illustrator: "Aya Kusube",
category: "Pokemon",
hp: 120,
types: ["Darkness"],
description: {
id: "Cairan beracun yang dikeluarkan dari lengan kanan Garbodor sangat berbahaya, sehingga makhluk hidup yang sedang lemah akan mati seketika jika bermandikan cairan tersebut."
},
stage: "Stage1",
attacks: [{
name: {
id: "Lempar Buang"
},
effect: {
id: "Buang sesukanya Pokémon Tool dari Kartu Pegangan sendiri ke Trash, serangan ini memberikan kerusakan sejumlah 50 untuk tiap lembarnya."
},
damage: "50×",
cost: ["Darkness"]
}, {
name: {
id: "Venom Hit"
},
effect: {
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Racun."
},
damage: 80,
cost: ["Darkness", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card