mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
48 lines
1.3 KiB
TypeScript
48 lines
1.3 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SVDs"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
th: "คานุจัง",
|
||
id: "Tinkatink"
|
||
},
|
||
|
||
illustrator: "Kouki Saitou",
|
||
category: "Pokemon",
|
||
hp: 70,
|
||
types: ["Psychic"],
|
||
|
||
description: {
|
||
th: "เหวี่ยงค้อนทำมือเพื่อป้องกันตัว แต่มักถูกโปเกมอนที่กินโลหะแย่งไป",
|
||
id: "Tinkatink mengayunkan palu buatannya untuk melindungi dirinya, namun palu tersebut sering direbut oleh Pokémon pemakan logam."
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
name: {
|
||
th: "ทุบแตก",
|
||
id: "Melumatkan"
|
||
},
|
||
|
||
effect: {
|
||
th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว เลือกพลังงานที่ติดอยู่กับโปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้าม 1 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด",
|
||
id: "Lempar koin 1 kali. Jika hasilnya sisi depan, pilih 1 Energi yang dikenakan pada Pokémon Bertarung lawan, lalu buang ke Trash."
|
||
},
|
||
|
||
damage: 10,
|
||
cost: ["Psychic"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Metal",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "G"
|
||
}
|
||
|
||
export default card |