1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-31 11:51:59 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

63
data-asia/SV/SV4a/332.ts Normal file
View File

@@ -0,0 +1,63 @@
import { Card } from "../../../interfaces"
import Set from "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "パルデア ドオーex",
'zh-tw': "帕底亞 土王ex",
id: "Paldean Clodsire ex"
},
illustrator: "PLANETA Mochizuki",
category: "Pokemon",
hp: 280,
types: ["Darkness"],
stage: "Stage1",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
ja: "どくのぬまち",
'zh-tw': "毒之沼地",
id: "Tanah Rawa Beracun"
},
effect: {
ja: "場にスタジアムが出ているなら、自分の番に1回使える。相手のバトルポケモンをどくにする。",
'zh-tw': "若場上有競技場卡則在自己的回合時可使用1次。將對手的戰鬥寶可夢【中毒】。",
id: "Dapat digunakan 1 kali pada giliran sendiri jika ada Stadium di Arena. Ubah kondisi Pokémon Bertarung lawan menjadi Racun."
}
}],
attacks: [{
cost: ["Darkness", "Colorless", "Colorless"],
name: {
ja: "ニードルボーン",
'zh-tw': "尖刺骨",
id: "Needle Bone"
},
damage: 200,
effect: {
ja: "コインを1回投げウラなら、次の自分の番、このポケモンはワザが使えない。",
'zh-tw': "擲1次硬幣若為反面則在下個自己的回合這隻寶可夢無法使用招式。",
id: "Lempar koin 1 kali. Jika hasilnya sisi belakang, pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan."
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card