1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

63 lines
1.6 KiB
TypeScript
Raw 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 "../SV3"
const card: Card = {
set: Set,
name: {
ja: "パルデア ウパー",
'zh-tw': "帕底亞 烏波",
th: "พัลเดีย อูปา"
},
illustrator: "kirisAki",
rarity: "Common",
category: "Pokemon",
dexId: [194],
hp: 60,
types: ["Darkness"],
description: {
ja: "縄張り争いに 敗れて 陸で 暮らすうちに 毒の 粘膜で 体を 保護するように 変わった。",
'zh-tw': "因搶輸地盤而到陸地上生活,久而久之變成了是 用帶毒的黏膜來保護身體。",
th: "หลังจากที่แพ้สงครามแย่งชิงอาณาเขตจนต้องมาอาศัยอยู่บนบก ก็ปรับตัวให้มีเมือกพิษปกป้องร่างกาย"
},
stage: "Basic",
attacks: [{
cost: ["Darkness"],
name: {
ja: "とびちるどく",
'zh-tw': "噴濺毒",
th: "พิษกระเด็น"
},
effect: {
ja: "おたがいのバトルポケモンを、それぞれどくにする。",
'zh-tw': "將雙方的戰鬥寶可夢【中毒】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ของทั้งสองฝ่าย แต่ละตัวเป็นสภาวะ[พิษ]"
}
}, {
cost: ["Darkness", "Colorless", "Colorless"],
name: {
ja: "しっぽではたく",
'zh-tw': "擺尾拍擊",
th: "สะบัดหาง"
},
damage: 30
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card