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

52 lines
924 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 "../SV6s"
const card: Card = {
set: Set,
name: {
id: "Thwackey"
},
illustrator: "GOSSAN",
category: "Pokemon",
hp: 100,
types: ["Grass"],
description: {
id: "Thwackey yang dapat mengetukkan irama menggunakan dua buah stiknya dengan kencanglah yang makin dihormati kawanannya."
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
id: "Gendang Dung Dung Dung"
},
effect: {
id: "Dapat digunakan 1 kali pada giliran sendiri jika Pokémon Bertarung sendiri adalah Pokémon yang memiliki Ability Orkes Festival. Pilih 1 kartu sesukanya dari Deck sendiri, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck."
}
}],
attacks: [{
name: {
id: "Menghantam"
},
damage: 50,
cost: ["Grass", "Grass"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card