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

69 lines
2.2 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: "Kurata So",
rarity: "Common",
category: "Pokemon",
dexId: [213],
hp: 80,
types: ["Grass"],
description: {
ja: "ツボのような 甲羅の 中に ためこんだ 木の実は いつの間にか ドロドロの ジュースに 変わる。",
'zh-tw': "儲存在壺形甲殼裡的樹果會在不知不覺間變成黏糊糊的果汁。",
th: "ผลไม้ที่เก็บสะสมไว้ในกระดองลักษณะคล้ายไห กลายเป็นน้ำคั้นผสมเนื้อตั้งแต่เมื่อไรก็ไม่รู้"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "きのみのかおり",
'zh-tw': "樹果香氣",
th: "กลิ่นหอมของผลไม้"
},
effect: {
ja: "自分の山札からたねポケモンを1枚選び、ベンチに出す。そして山札を切る。",
'zh-tw': "從自己的牌庫選擇1張【基礎】寶可夢卡放置於備戰區。並且重洗牌庫。",
th: "เลือกการ์ดโปเกมอน[พื้นฐาน] 1 ใบจากสำรับการ์ดฝ่ายเรา วางบนเบนช์ แล้วสับสำรับการ์ด"
}
}, {
cost: ["Colorless", "Colorless"],
name: {
ja: "ガードプレス",
'zh-tw': "防守壓制",
th: "การ์ดเพรส"
},
damage: 30,
effect: {
ja: "次の相手の番、このポケモンが受けるワザのダメージは「-30」される。",
'zh-tw': "在下個對手的回合,這隻寶可夢受到招式的傷害「-30」點。",
th: "เทิร์นถัดไปของฝ่ายตรงข้าม แดเมจของท่าต่อสู้ที่โปเกมอนนี้จะได้รับจะถูก [-30]"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "G"
}
export default card