1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 03:29:51 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

54
data-asia/S/S12/026.ts Normal file
View File

@ -0,0 +1,54 @@
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