1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +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 "../SV5M"
const card: Card = {
set: Set,
name: {
'zh-tw': "熾焰咆哮虎ex",
th: "กาโอกาเอ็นex"
},
illustrator: "N-DESIGN Inc.",
category: "Pokemon",
hp: 320,
types: ["Fire"],
stage: "Stage2",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
'zh-tw': "喧鬧競技",
th: "เล่นสุดใจ"
},
effect: {
'zh-tw': "這隻寶可夢使用招式所需的【無】能量,減少對手的備戰寶可夢的數量。",
th: "พลังงาน[ไร้สี]สำหรับใช้ท่าต่อสู้ของโปเกมอนนี้จะลดลง ตามจำนวนโปเกมอนบนเบนช์ฝ่ายตรงข้าม"
}
}],
attacks: [{
name: {
'zh-tw': "火焰炸彈",
th: "เบลซบอมบ์"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【灼傷】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ[ไหม้]"
},
damage: 240,
cost: ["Fire", "Colorless", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card