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

57
data-asia/SV/SV5M/039.ts Normal file
View File

@ -0,0 +1,57 @@
import { Card } from "../../../interfaces"
import Set from "../SV5M"
const card: Card = {
set: Set,
name: {
'zh-tw': "螺釘地鼠",
th: "โมกุริว"
},
illustrator: "Kariya",
category: "Pokemon",
hp: 70,
types: ["Fighting"],
description: {
'zh-tw': "會將雙掌上的爪子併攏,並讓身體高速旋轉, 瞄準獵物衝過去。",
th: "ประกบเล็บมือทั้งสองข้างเข้าด้วยกัน แล้วหมุนตัวด้วยความรวดเร็ว แล้วพุ่งเข้าใส่เหยื่อ"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "狂挖",
th: "ขุดไม่หยุด"
},
effect: {
'zh-tw': "在自己的回合從手牌將這張卡放置於備戰區時可使用1次。從自己的牌庫選擇最多3張「基本【鬥】能量」卡將其丟棄。並且重洗牌庫。",
th: "ในเทิร์นฝ่ายเรา เมื่อนำการ์ดนี้จากบนมือวางบนเบนช์ ใช้ได้ 1 ครั้ง เลือกการ์ด [พลังงานพื้นฐาน[ต่อสู้]] ได้สูงสุด 3 ใบจากสำรับการ์ดฝ่ายเรา ทิ้งที่ตำแหน่งทิ้งการ์ด แล้วสับสำรับการ์ด"
}
}],
attacks: [{
name: {
'zh-tw': "沙沫",
th: "ละอองทราย"
},
damage: 20,
cost: ["Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card