1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00

57 lines
1.0 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 "../SV5a"
const card: Card = {
set: Set,
name: {
ja: "ゴウカザル"
},
illustrator: "Krgc",
category: "Pokemon",
dexId: [392],
hp: 140,
types: ["Fire"],
description: {
ja: "頭で 燃える 炎の ように 激しい 性格の ポケモン。 素早さでは だれにも 負けない。"
},
stage: "Stage2",
abilities: [{
type: "Ability",
name: {
ja: "かえんぶとう"
},
effect: {
ja: "自分の番に1回使える。自分の手札から「基本エネルギー」と「基本エネルギー」をそれぞれ1枚まで選び、自分のポケモンに好きなようにつける。"
}
}],
attacks: [{
cost: ["Fire", "Fire", "Colorless"],
name: {
ja: "バーンアウト"
},
damage: 200,
effect: {
ja: "このポケモンについているエネルギーを1個選び、トラッシュする。"
}
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 1
}
export default card