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

69 lines
2.5 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 "../SV4M"
const card: Card = {
set: Set,
name: {
ja: "チオンジェン",
'zh-tw': "古簡蝸",
th: "ฉงเจี่ยน"
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
dexId: [1001],
hp: 130,
types: ["Grass"],
description: {
ja: "草木の エネルギーを 吸い上げる。 周囲の 森は たちどころに 枯れ果て 田畑は 不作となる。",
'zh-tw': "會吸取草木的能量,使周圍的森林霎時乾枯,田地的農作物歉收。",
th: "ดูดพลังงานของต้นไม้ใบหญ้า ทำให้ป่าไม้โดยรอบเหี่ยวเฉาอย่างรวดเร็วและไร่นาไม่ค่อยออกผล"
},
stage: "Basic",
attacks: [{
cost: ["Grass"],
name: {
ja: "リーフブリング",
'zh-tw': "綠葉到來",
th: "เบิกใบไม้"
},
effect: {
ja: "自分のトラッシュから「基本エネルギー」を2枚まで選び、自分のポケモン1匹につける。",
'zh-tw': "從自己的棄牌區選擇最多2張「基本【草】能量」卡附於自己的1隻寶可夢身上。",
th: "เลือกการ์ด [พลังงานพื้นฐาน[หญ้า]] ได้สูงสุด 2 ใบจากตำแหน่งทิ้งการ์ดฝ่ายเรา ติดที่โปเกมอนฝ่ายเรา 1 ตัว"
}
}, {
cost: ["Grass", "Grass", "Grass", "Colorless"],
name: {
ja: "どんよくバインド",
'zh-tw': "貪欲制約",
th: "โลภมากมัดติด"
},
damage: 140,
effect: {
ja: "次の相手の番、このワザを受けたポケモンは、ワザを使うためのエネルギーが、エネルギー2個ぶん多くなる。",
'zh-tw': "在下個對手的回合受到這個招式的寶可夢使用招式所需的能量增加2個【無】能量。",
th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนที่ได้รับท่าต่อสู้นี้ พลังงานสำหรับใช้ท่าต่อสู้ จะใช้พลังงาน[ไร้สี]เพิ่มขึ้น 2 ลูก"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "G"
}
export default card