1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +00:00

feat: Add SV8a (#673)

This commit is contained in:
2025-02-28 08:44:24 +01:00
committed by GitHub
parent 2f9c5814ff
commit 19dccfd5d7
238 changed files with 14569 additions and 0 deletions

69
data-asia/SV/SV8a/215.ts Normal file
View File

@ -0,0 +1,69 @@
import { Card } from "../../../interfaces"
import Set from "../SV8a"
const card: Card = {
set: Set,
name: {
ja: "スナケガワex",
id: "Sandy Shocks ex",
'zh-tw': "沙鐵皮ex",
'zh-cn': "沙鐵皮ex"
},
illustrator: "Tetsu Kayama",
rarity: "None",
category: "Pokemon",
hp: 220,
types: ["Fighting"],
stage: "Basic",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
ja: "じりょくきゅうしゅう",
id: "Isapan Kekuatan Magnet",
'zh-tw': "磁力吸收",
'zh-cn': "磁力吸收"
},
effect: {
ja: "相手のサイドの残り枚数が4枚以下なら、自分の番に1回使える。自分のトラッシュから「基本エネルギー」を1枚選び、このポケモンにつける。",
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.",
'zh-tw': "若對手剩餘獎賞卡的張數為4張以下則在自己的回合時可使用1次。從自己的棄牌區選擇1張「基本【鬥】能量」卡附於這隻寶可夢身上。",
'zh-cn': "若對手剩餘獎賞卡的張數為4張以下則在自己的回合時可使用1次。從自己的棄牌區選擇1張「基本【鬥】能量」卡附於這隻寶可夢身上。"
}
}],
attacks: [{
cost: ["Fighting", "Fighting", "Colorless"],
name: {
ja: "グラウンドスパイク",
id: "Ground Spike",
'zh-tw': "大地扣殺",
'zh-cn': "大地扣殺"
},
damage: 200,
effect: {
ja: "次の自分の番、このポケモンはワザが使えない。",
id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan.",
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。",
'zh-cn': "在下個自己的回合,這隻寶可夢無法使用招式。"
}
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card