1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00

59 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 "../SV6"
const card: Card = {
set: Set,
name: {
ja: "オーガポン かまどのめんex",
'zh-tw': "厄鬼椪 火灶面具ex"
},
category: "Pokemon",
rarity: "Double rare",
illustrator: "5ban Graphics",
hp: 210,
types: ["Fire"],
stage: "Basic",
suffix: "EX",
attacks: [{
cost: ["Fire", "Colorless", "Colorless"],
name: {
ja: "いかりがま",
'zh-tw': "憤怒之窯"
},
damage: "20×",
effect: {
ja: "このポケモンにのっているダメカンの数×20ダメージ。",
'zh-tw': "造成這隻寶可夢身上放置的傷害指示物的數量×20點傷害。"
}
}, {
cost: ["Fire", "Fire", "Fire"],
name: {
ja: "ダイナミックブレイズ",
'zh-tw': "極限火焰"
},
damage: "140+",
effect: {
ja: "相手のバトルポケモンが進化ポケモンなら、140ダメージ追加。その場合、このポケモンについているエネルギーを、すべてトラッシュする。",
'zh-tw': "若對手的戰鬥寶可夢為進化寶可夢則增加140點傷害。這個情況下將這隻寶可夢身上附加的能量卡全部丟棄。"
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card