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:
56
data-asia/S/S5I/033.ts
Normal file
56
data-asia/S/S5I/033.ts
Normal file
@@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S5I"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "大炭車",
|
||||
th: "โทร็อกกอน"
|
||||
},
|
||||
|
||||
illustrator: "Uta",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "能透過高速旋轉自己的腳,以30公里的時速奔跑。能噴出攝氏1000度的火焰。",
|
||||
th: "วิ่งได้ 30 กิโลเมตรต่อชั่วโมงโดยหมุนขาด้วยความเร็วสูง พ่นไฟร้อนสูงถึง 1000 องศาเซลเซียส"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "撞擊",
|
||||
th: "พุ่งเข้าชน"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Colorless", "Colorless", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "狂野衝撞",
|
||||
th: "ไวลด์แทคเคิล"
|
||||
},
|
||||
|
||||
effect: {
|
||||
'zh-tw': "這隻寶可夢也受到10點傷害。",
|
||||
th: "โปเกมอนตัวนี้ก็จะได้รับแดเมจ 10 ด้วย"
|
||||
},
|
||||
|
||||
damage: 100,
|
||||
cost: ["Fighting", "Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
regulationMark: "E"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user