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:
50
data-asia/SV/SV5s/054.ts
Normal file
50
data-asia/SV/SV5s/054.ts
Normal file
@ -0,0 +1,50 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV5s"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
id: "Wugtrio ex"
|
||||
},
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
category: "Pokemon",
|
||||
hp: 250,
|
||||
types: ["Lightning"],
|
||||
stage: "Stage1",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
id: "Tricolor Pump"
|
||||
},
|
||||
|
||||
effect: {
|
||||
id: "Buang paling banyak 3 lembar Energi dari Kartu Pegangan sendiri ke Trash, serangan ini memberikan kerusakan sejumlah 60 untuk tiap lembarnya kepada 1 Pokémon lawan. [Kelemahan dan Resistansi Pokémon Cadangan tidak mempengaruhi jumlah kerusakan.]"
|
||||
},
|
||||
|
||||
cost: ["Water"]
|
||||
}, {
|
||||
name: {
|
||||
id: "Pitingan Pelumpuh"
|
||||
},
|
||||
|
||||
effect: {
|
||||
id: "Pada giliran lawan berikutnya, Pokémon yang menerima serangan ini tidak dapat Mundur."
|
||||
},
|
||||
|
||||
damage: 120,
|
||||
cost: ["Water", "Water"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user