1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00

64 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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