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

60 lines
1.5 KiB
TypeScript
Raw Permalink 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 "../SVDs"
const card: Card = {
set: Set,
name: {
th: "โทเกะเดมารุ",
id: "Togedemaru"
},
illustrator: "Sekio",
category: "Pokemon",
hp: 80,
types: ["Metal"],
description: {
th: "พออยู่ในภาวะคับขันจะม้วนตัวและทำให้หนามกลางหลังตั้งชัน ปล่อยไฟฟ้าช็อตตามอำเภอใจ",
id: "Ketika dalam keadaan bahaya, Togedemaru membulatkan tubuhnya, mendirikan duri-duri di punggungnya, dan menembakkan serangan petir secara asal-asalan."
},
stage: "Basic",
attacks: [{
name: {
th: "ขดกลม",
id: "Membulat"
},
effect: {
th: "ทอยเหรียญ 1 ครั้งถ้าออกหัว เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนนี้จะไม่ได้รับแดเมจของท่าต่อสู้",
id: "Lempar koin 1 kali. Jika hasilnya sisi depan, pada giliran lawan berikutnya, Pokémon ini tidak menerima kerusakan akibat serangan."
},
cost: ["Colorless"]
}, {
name: {
th: "กลิ้งโจมตี",
id: "Tubrukan Menggelinding"
},
damage: 50,
cost: ["Metal", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
resistances: [{
type: "Grass",
value: "-30"
}],
retreat: 1,
regulationMark: "G"
}
export default card