mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-31 20:01:58 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
59
data-asia/S/S9a/014.ts
Normal file
59
data-asia/S/S9a/014.ts
Normal file
@@ -0,0 +1,59 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S9a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "水晶燈火靈",
|
||||
ja: "シャンデラ"
|
||||
},
|
||||
|
||||
illustrator: "sui",
|
||||
category: "Pokemon",
|
||||
hp: 150,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "住在古老的洋樓裡。詭異地搖晃手臂上的火焰, 以此來催眠對手。",
|
||||
ja: "古びた 洋館に 棲みつく。 腕の 炎を 妖しく 揺らし 相手を 催眠に かけるぞ。"
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
'zh-tw': "炙山",
|
||||
ja: "やまあぶり"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "在自己的回合,當從手牌使出這張卡並完成進化時,可使用1次。將對手的牌庫上方3張卡丟棄。",
|
||||
ja: "自分の番に、このカードを手札から出して進化させたとき、1回使える。相手の山札を上から3枚トラッシュする。"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "高溫爆破",
|
||||
ja: "ヒートブラスト"
|
||||
},
|
||||
|
||||
damage: 90,
|
||||
cost: ["Fire", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F",
|
||||
rarity: "Rare",
|
||||
dexId: [609]
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user