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

60 lines
2.0 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 "../SV5M"
const card: Card = {
set: Set,
name: {
'zh-tw': "狡猾天狗",
th: "ดาเทนกุ"
},
illustrator: "SIE NANAHARA",
category: "Pokemon",
hp: 150,
types: ["Grass"],
description: {
'zh-tw': "過去被視為森林之神而受到畏懼的寶可夢。有著讀取對手想法並 搶先一步行動的能力。",
th: "โปเกมอนที่หวาดกลัวกันว่าเป็นเทพเจ้าแห่งป่า มีพลังพิเศษอ่านความคิดฝ่ายตรงข้ามแล้วชิงลงมือก่อนได้"
},
stage: "Stage2",
attacks: [{
name: {
'zh-tw': "驅趕龍捲風",
th: "ทอร์นาโดผลักไส"
},
effect: {
'zh-tw': "選擇3隻對手的備戰寶可夢。然後將對手的沒有選擇的所有備戰寶可夢與附加的卡全部放回對手的牌庫並重洗。",
th: "เลือกโปเกมอนบนเบนช์ฝ่ายตรงข้าม 3 ตัว หลังจากนั้น นำโปเกมอนบนเบนช์ฝ่ายตรงข้ามทุกตัวที่ไม่ได้เลือก และการ์ดทั้งหมดที่ติดอยู่ ใส่กลับไปในสำรับการ์ดฝ่ายตรงข้ามแล้วสับ"
},
cost: ["Grass"]
}, {
name: {
'zh-tw': "能量閉環",
th: "เอนเนอร์จี้ลูป"
},
effect: {
'zh-tw': "選擇1個這隻寶可夢身上附加的能量放回手牌。",
th: "เลือกพลังงานที่ติดอยู่กับโปเกมอนนี้ 1 ลูก นำกลับขึ้นมือ"
},
damage: 140,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card