1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00

69 lines
2.2 KiB
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV4a"
const card: Card = {
set: Set,
name: {
ja: "パルデア ドオーex",
'zh-tw': "帕底亞 土王ex",
th: "พัลเดีย โดะโอex",
id: "Paldean Clodsire ex"
},
illustrator: "PLANETA Mochizuki",
rarity: "Double rare",
category: "Pokemon",
hp: 280,
types: ["Darkness"],
stage: "Stage1",
suffix: "EX",
abilities: [{
type: "Ability",
name: {
ja: "どくのぬまち",
'zh-tw': "毒之沼地",
th: "หนองน้ำพิษ",
id: "Tanah Rawa Beracun"
},
effect: {
ja: "場にスタジアムが出ているなら、自分の番に1回使える。相手のバトルポケモンをどくにする。",
'zh-tw': "若場上有競技場卡則在自己的回合時可使用1次。將對手的戰鬥寶可夢【中毒】。",
th: "ถ้ามีการ์ดสเตเดียมอยู่บนกระดาน ใช้ได้ 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': "尖刺骨",
th: "นีดเดิ้ลโบน",
id: "Needle Bone"
},
damage: 200,
effect: {
ja: "コインを1回投げウラなら、次の自分の番、このポケモンはワザが使えない。",
'zh-tw': "擲1次硬幣若為反面則在下個自己的回合這隻寶可夢無法使用招式。",
th: "ทอยเหรียญ 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