1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 00:49:18 +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

63
data-asia/SV/SV6/063.ts Normal file
View File

@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
ja: "キラフロル",
'zh-tw': "晶光花"
},
category: "Pokemon",
rarity: "Uncommon",
illustrator: "Kazumasa Yasukuni",
dexId: [970],
hp: 130,
types: ["Fighting"],
description: {
ja: "毒エネルギーが 結晶化した 花びらは テラスタルの 宝石に 似ていると 最近 判明した。",
'zh-tw': "最近發現牠的毒能量 結晶化後所形成的花瓣 與太晶的寶石類似。"
},
stage: "Stage1",
attacks: [{
cost: ["Colorless"],
name: {
ja: "しんけいどく",
'zh-tw': "神經毒"
},
effect: {
ja: "コインを1回投げオモテなら、相手のバトルポケモンをどくとマヒにする。",
'zh-tw': "擲1次硬幣若為正面則將對手的戰鬥寶可夢【中毒】與【麻痺】。"
}
}, {
cost: ["Fighting"],
name: {
ja: "ベノムショック",
'zh-tw': "毒液衝擊"
},
damage: "30+",
effect: {
ja: "相手のバトルポケモンがどくなら、100ダメージ追加。",
'zh-tw': "若對手的戰鬥寶可夢【中毒】則增加100點傷害。"
}
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 3,
regulationMark: "H"
}
export default card