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

54 lines
1.3 KiB
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 "../S12"
const card: Card = {
set: Set,
name: {
'zh-tw': "小貓怪",
th: "โคลิงก์",
ja: "コリンク"
},
illustrator: "0313",
category: "Pokemon",
hp: 60,
types: ["Lightning"],
description: {
'zh-tw': "能利用肌肉的伸縮來產生電流。當牠全身都在抖動時, 就代表牠正在激烈地發電。",
th: "ผลิตไฟฟ้าโดยการเกร็งกล้ามเนื้อ การที่ตัวสั่นสู้นั้นแสดงว่ากำลังผลิตไฟฟ้าที่รุนแรงอยู่",
ja: "筋肉の 収縮で 電気を つくる。 武者震いは 激しく 発電している 証拠。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "電流攻擊",
th: "ช็อตไฟฟ้า",
ja: "でんげき"
},
effect: {
'zh-tw': "這隻寶可夢也受到10點傷害。",
th: "โปเกมอนตัวนี้ก็จะได้รับแดเมจ 10 ด้วย",
ja: "このポケモンにも10ダメージ。"
},
damage: 30,
cost: ["Lightning"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
rarity: "Common",
dexId: [403]
}
export default card