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

45 lines
788 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 "../SV5s"
const card: Card = {
set: Set,
name: {
id: "Raging Bolt ex"
},
illustrator: "aky CG Works",
category: "Pokemon",
hp: 240,
types: ["Dragon"],
stage: "Basic",
suffix: "EX",
attacks: [{
name: {
id: "Letusan Raungan"
},
effect: {
id: "Buang semua Kartu Pegangan sendiri ke Trash, lalu ambil 6 kartu dari atas Deck."
},
cost: ["Colorless"]
}, {
name: {
id: "Guntur Membahana Ekstrem"
},
effect: {
id: "Buang sesukanya Energi Dasar yang dikenakan pada Pokémon di Arena sendiri ke Trash, serangan ini memberikan kerusakan sejumlah 70 untuk tiap lembarnya."
},
damage: "70×",
cost: ["Lightning", "Fighting"]
}],
retreat: 3,
regulationMark: "H"
}
export default card