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

58
data-asia/SV/SV6/039.ts Normal file
View File

@ -0,0 +1,58 @@
import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
ja: "コリンク",
'zh-tw': "小貓怪"
},
category: "Pokemon",
rarity: "Common",
illustrator: "Yuu Nishida",
dexId: [403],
hp: 60,
types: ["Lightning"],
description: {
ja: "筋肉が 伸び縮み することで 電気が 発生。 ピンチになると 体毛が まぶしく 光る。",
'zh-tw': "只要伸縮肌肉就能夠 產生電流。身陷危機時 體毛會發出刺眼的亮光。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "こうきしん",
'zh-tw': "好奇心"
},
effect: {
ja: "相手の手札を見る。",
'zh-tw': "查看對手的手牌。"
}
}, {
cost: ["Lightning", "Lightning"],
name: {
ja: "バチバチ",
'zh-tw': "劈哩啪啦"
},
damage: 30
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card