1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 16:19:18 +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

55
data-asia/SV/SV5M/055.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../SV5M"
const card: Card = {
set: Set,
name: {
'zh-tw': "向尾喵",
th: "เอเนโค"
},
illustrator: "Atsuko Nishida",
category: "Pokemon",
hp: 60,
types: ["Colorless"],
description: {
'zh-tw': "看見在動的東西會不由自主地追上去。會追著自己的尾巴, 一圈圈地原地打轉。",
th: "ชอบเผลอไล่ตามสิ่งที่เคลื่อนไหว และวิ่งวนไปมาอยู่ที่เดิมเพื่อไล่จับหางตัวเอง"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "呼朋引伴",
th: "เรียกเพื่อน"
},
effect: {
'zh-tw': "從自己的牌庫選擇1張【基礎】寶可夢卡放置於備戰區。並且重洗牌庫。",
th: "เลือกการ์ดโปเกมอน[พื้นฐาน] 1 ใบจากสำรับการ์ดฝ่ายเรา วางบนเบนช์ แล้วสับสำรับการ์ด"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "撞擊",
th: "พุ่งเข้าชน"
},
damage: 20,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card