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

56
data-asia/S/S5a/051.ts Normal file
View File

@@ -0,0 +1,56 @@
import { Card } from "../../../interfaces"
import Set from "../S5a"
const card: Card = {
set: Set,
name: {
'zh-tw': "車輪毬",
th: "วีกา"
},
illustrator: "hatachu",
category: "Pokemon",
hp: 90,
types: ["Darkness"],
description: {
'zh-tw': "平時雖然一動也不動。但遇襲時就會高速旋轉四處奔馳,並以身體撞擊來反擊。",
th: "ปกติจะไม่ขยับตัวแต่ถ้าถูกเล่นงานเมื่อไหร่ จะโต้กลับด้วยการหมุนตัวด้วยความเร็วสูงแล้วเอาตัวพุ่งชน"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "毒針",
th: "เหล็กในพิษ"
},
effect: {
'zh-tw': "將對手的戰鬥寶可夢【中毒】。",
th: "ทำให้โปเกมอนบนตำแหน่งต่อสู้ฝ่ายตรงข้ามเป็นสภาวะ [พิษ]"
},
damage: 20,
cost: ["Darkness"]
}, {
name: {
'zh-tw': "滾動衝撞",
th: "กลิ้งโจมตี"
},
damage: 50,
cost: ["Darkness", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3,
regulationMark: "E"
}
export default card