1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

69 lines
2.3 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 "../S12a"
const card: Card = {
set: Set,
name: {
'zh-tw': "蒂安希",
th: "ดีแอนซี",
ja: "ディアンシー"
},
illustrator: "Yuu Nishida",
category: "Pokemon",
hp: 90,
types: ["Psychic"],
description: {
'zh-tw': "在雙手的間隙中壓縮空氣中的碳元素, 轉瞬間變出許多鑽石。",
th: "จะรวบรวมคาร์บอนที่อยู่ในอากาศมาอัดรวมระหว่างมือทั้งสองเพื่อสร้างเพชรจำนวนมากในพริบตา",
ja: "両手の すきまで 空気中の 炭素を 圧縮して たくさんの ダイヤを 一瞬で 生み出す。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "公主帷幔",
th: "ปรินเซสเคอร์เทน",
ja: "プリンセスカーテン"
},
effect: {
'zh-tw': "只要這隻寶可夢在戰鬥場上,對手從手牌使出支援者時,自己的備戰區的所有【基礎】寶可夢不會受到其效果的影響。",
th: "ตราบใดที่โปเกมอนนี้ยังอยู่บนตำแหน่งต่อสู้ โปเกมอน[พื้นฐาน]บนเบนช์ฝ่ายเราทุกตัวจะไม่ได้รับเอฟเฟกต์เมื่อฝ่ายตรงข้ามนำการ์ดซัพพอร์ตจากบนมือออกมาใช้",
ja: "このポケモンがバトル場にいるかぎり、自分のベンチのたねポケモン全員は、相手が手札からサポートを出して使ったとき、その効果を受けない。"
}
}],
attacks: [{
name: {
'zh-tw': "扣殺抽出",
th: "สไปค์ดรอว์",
ja: "スパイクドロー"
},
effect: {
'zh-tw': "從自己的牌庫抽出2張卡。",
th: "จั่วการ์ด 2 ใบจากสำรับการ์ดฝ่ายเรา",
ja: "自分の山札を2枚引く。"
},
damage: 20,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 1,
regulationMark: "F",
dexId: [719]
}
export default card