1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

34 lines
488 B
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 "../SV-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "猛雷鼓ex"
},
illustrator: "aky CG Works",
category: "Pokemon",
hp: 240,
types: ["Dragon"],
stage: "Basic",
suffix: "EX",
attacks: [{
name: {
'zh-tw': "濺射咆哮"
},
effect: {
'zh-tw': "將自己的手牌全部丟棄從牌庫抽出6張卡。"
},
cost: ["Colorless"]
}],
retreat: 3,
regulationMark: "H"
}
export default card