1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-10 07:51:58 +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

60
data-asia/S/S5I/060.ts Normal file
View File

@@ -0,0 +1,60 @@
import { Card } from "../../../interfaces"
import Set from "../S5I"
const card: Card = {
set: Set,
name: {
'zh-tw': "老翁龍",
th: "จิจีลอน"
},
illustrator: "Eri Yamaki",
category: "Pokemon",
hp: 120,
types: ["Colorless"],
description: {
'zh-tw': "心地善良愛親近人,但只要生氣就會颳起強風吹倒一切。",
th: "ใจดีและเชื่องแต่ถ้าโกรธขึ้นมาสักครั้ง มันจะพัดลมแรง ๆ โค่นทุกอย่างล้มทลาย"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "呼朋引伴",
th: "เรียกเพื่อน"
},
effect: {
'zh-tw': "從自己的牌庫選擇最多2張【基礎】寶可夢卡放置於備戰區。並且重洗牌庫。",
th: "เลือกการ์ดโปเกมอน [พื้นฐาน] ได้สูงสุด 2 ใบจากสำรับการ์ดฝ่ายเราแล้ววางบนเบนช์ แล้วสับสำรับการ์ด"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "螺旋衝刺",
th: "สไปรัลรัช"
},
effect: {
'zh-tw': "擲硬幣直到出現反面增加正面出現的次數×30點傷害。",
th: "ทอยเหรียญจนกว่าจะออกก้อย การโจมตีนี้จะเพิ่มแดเมจเท่ากับจำนวนครั้งที่ออกหัว x30"
},
damage: "30+",
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "E"
}
export default card