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

63 lines
1.4 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 "../SV6"
const card: Card = {
set: Set,
name: {
ja: "コリンク",
'zh-tw': "小貓怪",
th: "โคลิงก์"
},
category: "Pokemon",
rarity: "Common",
illustrator: "Yuu Nishida",
dexId: [403],
hp: 60,
types: ["Lightning"],
description: {
ja: "筋肉が 伸び縮み することで 電気が 発生。 ピンチになると 体毛が まぶしく 光る。",
'zh-tw': "只要伸縮肌肉就能夠 產生電流。身陷危機時 體毛會發出刺眼的亮光。",
th: "สร้างไฟฟ้าโดยการยืดและหดตัวของกล้ามเนื้อ พอเข้าตาจน ขนทั่วตัวจะเปล่งแสงแสบตา"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "こうきしん",
'zh-tw': "好奇心",
th: "อยากรู้อยากเห็น"
},
effect: {
ja: "相手の手札を見る。",
'zh-tw': "查看對手的手牌。",
th: "ดูการ์ดบนมือฝ่ายตรงข้าม"
}
}, {
cost: ["Lightning", "Lightning"],
name: {
ja: "バチバチ",
'zh-tw': "劈哩啪啦",
th: "ประกายไฟ"
},
damage: 30
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card