1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +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/S/S10a/007.ts Normal file
View File

@ -0,0 +1,55 @@
import { Card } from "../../../interfaces"
import Set from "../S10a"
const card: Card = {
set: Set,
name: {
th: "มายูลด์",
'zh-tw': "盾甲繭"
},
illustrator: "GOSSAN",
category: "Pokemon",
hp: 80,
types: ["Grass"],
description: {
th: "มันจะไม่มีวันลืมการโจมตีที่เข้ามาในขณะที่กำลังเก็บตัวอยู่ในรังไหมเลย แม้จะวิวัฒนาการไปแล้วก็ตาม และจะตามล้างแค้นให้จงได้",
'zh-tw': "就算進化了也不會忘記待在繭中時受到的攻擊。 一定會設法進行報復。"
},
stage: "Stage1",
attacks: [{
name: {
th: "แข็งขึ้น",
'zh-tw': "變硬"
},
effect: {
th: "เทิร์นถัดไปของฝ่ายตรงข้าม โปเกมอนนี้จะไม่ได้รับแดเมจของท่าต่อสู้ที่น้อยกว่าหรือเท่ากับ [60]",
'zh-tw': "在下個對手的回合這隻寶可夢不會受到「60」以下的招式的傷害。"
},
cost: ["Grass"]
}, {
name: {
th: "กลิ้งโจมตี",
'zh-tw': "滾動衝撞"
},
damage: 20,
cost: ["Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3,
regulationMark: "F"
}
export default card