1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 19:19:50 +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

56
data-asia/SV/SV5M/007.ts Normal file
View File

@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../SV5M"
const card: Card = {
set: Set,
name: {
'zh-tw': "斗笠菇",
th: "คิโนกัซซา"
},
illustrator: "Taiga Kasai",
category: "Pokemon",
hp: 120,
types: ["Grass"],
description: {
'zh-tw': "尾巴上的種子是由毒孢子所構成的。會以肉眼無法 看清的速度出拳打倒敵人。",
th: "เมล็ดที่หางคือสปอร์พิษ จัดการศัตรูด้วยหมัดอย่างว่องไวชนิดมองแทบไม่เห็น"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "出拳",
th: "หมัด"
},
damage: 30,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "關節衝擊",
th: "นักเคิลอิมแพกต์"
},
effect: {
'zh-tw': "在下個自己的回合,這隻寶可夢無法使用招式。",
th: "เทิร์นถัดไปของฝ่ายเรา โปเกมอนนี้จะใช้ท่าต่อสู้ไม่ได้"
},
damage: 120,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "H"
}
export default card