1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 03:29:51 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

69
data-asia/SV/SV4M/009.ts Normal file
View File

@ -0,0 +1,69 @@
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