mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
45
data-asia/SV/SV5s/105.ts
Normal file
45
data-asia/SV/SV5s/105.ts
Normal file
@ -0,0 +1,45 @@
|
||||
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
|
Reference in New Issue
Block a user