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

47 lines
1.4 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 "../SV7s"
const card: Card = {
set: Set,
name: {
th: "เด็นจิมูชิ",
id: "Charjabug"
},
illustrator: "Makura Tami",
category: "Pokemon",
hp: 80,
types: ["Lightning"],
description: {
th: "เมื่อย่อยใบไม้ร่วงที่กินเข้าไป จะผลิตไฟฟ้าออกมาและกักเก็บไว้ มันสามารถปล่อยไฟฟ้าออกมาจากส่วนปลายของขากรรไกรได้",
id: "Ketika mencerna daun jatuh yang telah dimakan, Pokémon ini menghasilkan listrik dan menghimpunnya. Ia mengeluarkan listrik dari ujung rahangnya."
},
stage: "Stage1",
attacks: [{
name: {
th: "เรียงขนาน",
id: "Berbaris Paralel"
},
effect: {
th: "เลือกการ์ด [เด็นจิมูชิ] ได้สูงสุด 3 ใบจากสำรับการ์ดฝ่ายเรา วางบนเบนช์ แล้วสับสำรับการ์ด",
id: "Pilih paling banyak 3 lembar Charjabug dari Deck sendiri, lalu masukkan ke Cadangan. Kemudian, kocok Deck."
},
cost: ["Lightning"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card