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

68 lines
2.1 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 "../SV1a"
const card: Card = {
set: Set,
name: {
ja: "パルデア ウパー",
'zh-tw': "帕底亞 烏波",
th: "พัลเดีย อูปา",
id: "Paldean Wooper"
},
illustrator: "Kouki Saitou",
rarity: "Common",
category: "Pokemon",
dexId: [194],
hp: 60,
types: ["Darkness"],
description: {
ja: "縄張り争いに 敗れて 陸で 暮らすうちに 毒の 粘膜で 体を 保護するように 変わった。",
'zh-tw': "因搶輸地盤而到陸地上生活,久而久之變成了是 用帶毒的黏膜來保護身體。",
th: "หลังจากที่แพ้สงครามแย่งชิงอาณาเขตจนต้องมาอาศัยอยู่บนบก ก็ปรับตัวให้มีเมือกพิษปกป้องร่างกาย",
id: "Membran beracun melindungi tubuh Wooper yang hidup di darat setelah kalah dalam pertarungan perebutan wilayah teritorial."
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "すみかをさがす",
'zh-tw': "尋找巢穴",
th: "หารัง",
id: "Mencari Tempat Tinggal"
},
effect: {
ja: "自分の山札からスタジアムを1枚選び、相手に見せて、手札に加える。そして山札を切る。",
'zh-tw': "從自己的牌庫選擇1張競技場卡在給對手看過後加入手牌。並且重洗牌庫。",
th: "เลือกการ์ดสเตเดียม 1 ใบจากสำรับการ์ดฝ่ายเรา ให้ฝ่ายตรงข้ามดู นำขึ้นมือ แล้วสับสำรับการ์ด",
id: "Pilih 1 lembar Stadium dari Deck sendiri, perlihatkan ke lawan, lalu tambahkan ke Kartu Pegangan. Kemudian, kocok Deck."
}
}, {
cost: ["Darkness"],
name: {
ja: "ぶつかる",
'zh-tw': "衝撞",
th: "กระแทก",
id: "Menyeruduk"
},
damage: 10
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card