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:
54
data-asia/SV/SV4s/050.ts
Normal file
54
data-asia/SV/SV4s/050.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV4s"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
id: "Zebstrika"
|
||||
},
|
||||
|
||||
illustrator: "GOSSAN",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Lightning"],
|
||||
|
||||
description: {
|
||||
id: "Pokémon ini memiliki kecepatan seketika yang secepat kilat. Ketika Zebstrika berlari dengan kecepatan penuh, suara guntur bergema ke sekelilingnya."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
id: "Ringkikan Meletus"
|
||||
},
|
||||
|
||||
effect: {
|
||||
id: "Pilih Energi Dasar {Listrik} dari Trash sendiri paling banyak sejumlah Kartu Point yang telah diambil lawan, lalu kenakan sesukanya pada Pokémon sendiri."
|
||||
},
|
||||
|
||||
cost: ["Lightning"]
|
||||
}, {
|
||||
name: {
|
||||
id: "Guntur"
|
||||
},
|
||||
|
||||
effect: {
|
||||
id: "Pokémon ini juga menerima kerusakan sejumlah 50."
|
||||
},
|
||||
|
||||
damage: 150,
|
||||
cost: ["Lightning", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user