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

60 lines
1.9 KiB
TypeScript
Raw Permalink 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 "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "噴火龍VSTAR",
th: "ลิซาร์ดอนVSTAR",
ja: "リザードンVSTAR"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 280,
types: ["Fire"],
stage: "VMAX",
attacks: [{
name: {
'zh-tw': "爆裂火焰",
th: "เพลิงระเบิด",
ja: "ばくれつファイヤー"
},
effect: {
'zh-tw': "若這隻寶可夢身上放置有傷害指示物則增加100點傷害。",
th: "ถ้าโปเกมอนนี้มีตัวนับแดเมจวางอยู่ การโจมตีนี้จะเพิ่มแดเมจอีก 100",
ja: "このポケモンにダメカンがのっているなら、100ダメージ追加。"
},
damage: "130",
cost: ["Fire", "Fire", "Colorless"]
}, {
name: {
'zh-tw': "[VSTAR力量]星星火焰",
th: "[พลังVSTAR] สตาร์เบลซ",
ja: "スターブレイズ"
},
effect: {
'zh-tw': "選擇2個這隻寶可夢身上附加的能量將其丟棄。[對戰中己方只可使用1次【VSTAR】力量。]",
th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 2 ลูก ทิ้งที่ตำแหน่งทิ้งการ์ด [ในระหว่างการแบตเทิล ฝ่ายเราใช้พลัง【VSTAR】ได้ 1 ครั้งเท่านั้น]",
ja: "このポケモンについているエネルギーを2個選び、トラッシュする。対戦中、自分はVSTARパワーを1回しか使えない。"
},
damage: 320,
cost: ["Fire", "Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card