mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
feat: Add SV9 (#674)
This commit is contained in:
64
data-asia/SV/SV9/017.ts
Normal file
64
data-asia/SV/SV9/017.ts
Normal file
@ -0,0 +1,64 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV9"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
ja: "ボルケニオンex",
|
||||
'zh-tw': "波爾凱尼恩ex",
|
||||
'zh-cn': "波爾凱尼恩ex"
|
||||
},
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
rarity: "Double rare",
|
||||
category: "Pokemon",
|
||||
hp: 220,
|
||||
types: ["Fire"],
|
||||
stage: "Basic",
|
||||
suffix: "EX",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
ja: "やけつくじょうき",
|
||||
'zh-tw': "燒灼蒸汽",
|
||||
'zh-cn': "燒灼蒸汽"
|
||||
},
|
||||
|
||||
effect: {
|
||||
ja: "このポケモンがバトル場にいるなら、自分の番に1回使える。相手のバトルポケモンをやけどにする。",
|
||||
'zh-tw': "若這隻寶可夢在戰鬥場上,則在自己的回合時可使用1次。將對手的戰鬥寶可夢【灼傷】。",
|
||||
'zh-cn': "若這隻寶可夢在戰鬥場上,則在自己的回合時可使用1次。將對手的戰鬥寶可夢【灼傷】。"
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fire", "Fire", "Colorless"],
|
||||
|
||||
name: {
|
||||
ja: "ヒートサイクロン",
|
||||
'zh-tw': "高溫旋風",
|
||||
'zh-cn': "高溫旋風"
|
||||
},
|
||||
|
||||
damage: 160,
|
||||
|
||||
effect: {
|
||||
ja: "このポケモンについているエネルギーを1個選び、ベンチポケモンにつけ替える。",
|
||||
'zh-tw': "選擇1個這隻寶可夢身上附加的能量,改附於備戰寶可夢身上。",
|
||||
'zh-cn': "選擇1個這隻寶可夢身上附加的能量,改附於備戰寶可夢身上。"
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "I"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user