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:
52
data-asia/SV/SV4s/178.ts
Normal file
52
data-asia/SV/SV4s/178.ts
Normal file
@ -0,0 +1,52 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV4s"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
id: "Sandy Shocks ex"
|
||||
},
|
||||
|
||||
illustrator: "Toshinao Aoki",
|
||||
category: "Pokemon",
|
||||
hp: 220,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
suffix: "EX",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
id: "Isapan Kekuatan Magnet"
|
||||
},
|
||||
|
||||
effect: {
|
||||
id: "Dapat digunakan 1 kali pada giliran sendiri jika sisa Kartu Point lawan adalah 4 lembar atau kurang. Pilih 1 lembar Energi Dasar {Petarung} dari Trash sendiri, lalu kenakan pada Pokémon ini."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
id: "Ground Spike"
|
||||
},
|
||||
|
||||
effect: {
|
||||
id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan."
|
||||
},
|
||||
|
||||
damage: 200,
|
||||
cost: ["Fighting", "Fighting", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "G"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user