mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
48 lines
1.2 KiB
TypeScript
48 lines
1.2 KiB
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV7s"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
th: "ชอนชี",
|
||
id: "Chinchou"
|
||
},
|
||
|
||
illustrator: "Souichirou Gunjima",
|
||
category: "Pokemon",
|
||
hp: 70,
|
||
types: ["Lightning"],
|
||
|
||
description: {
|
||
th: "ปล่อยกระแสไฟฟ้าขั้วบวกและขั้วลบออกจากปลายหนวดทั้งสองเพื่อทำให้อีกฝ่ายตัวชา",
|
||
id: "Ia mengalirkan listrik plus dan minus dari ujung 2 tentakelnya dan melumpuhkan lawannya."
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
name: {
|
||
th: "ดับเบิลโวลต์",
|
||
id: "Double Bolt"
|
||
},
|
||
|
||
effect: {
|
||
th: "ทอยเหรียญ 2 ครั้ง แดเมจจะเท่ากับจำนวนครั้งที่ออกหัว x20",
|
||
id: "Lempar koin 2 kali. Serangan ini memberikan kerusakan sejumlah 20 untuk tiap lemparan dengan hasil sisi depan."
|
||
},
|
||
|
||
damage: "20×",
|
||
cost: ["Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
regulationMark: "H"
|
||
}
|
||
|
||
export default card |