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

57 lines
1.3 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 "../SV5K"
const card: Card = {
set: Set,
name: {
ja: "ウガツホムラex",
'zh-tw': "破空焰ex",
th: "เพลิงทะลวงex"
},
illustrator: "Teeziro",
category: "Pokemon",
hp: 230,
types: ["Fire"],
stage: "Basic",
suffix: "EX",
attacks: [{
cost: ["Fire", "Colorless"],
name: {
ja: "ヒートブラスト",
'zh-tw': "高溫爆破",
th: "ฮีทบลาสต์"
},
damage: 60
}, {
cost: ["Fire", "Fire", "Colorless"],
name: {
ja: "れっかばくしん",
'zh-tw': "烈火爆進",
th: "ไฟลุกบุกทะลวง"
},
damage: 260,
effect: {
ja: "このワザを使ったなら、このポケモンは、バトル場をはなれるまで「れっかばくしん」が使えない。",
'zh-tw': "若使用了這個招式,則這隻寶可夢離開戰鬥場前無法使用「烈火爆進」。",
th: "ถ้าใช้ท่าต่อสู้นี้แล้ว โปเกมอนนี้ จะใช้ [ไฟลุกบุกทะลวง] ไม่ได้จนกว่าจะออกจากตำแหน่งต่อสู้"
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card