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:
56
data-asia/SV/SV5M/050.ts
Normal file
56
data-asia/SV/SV5M/050.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../SV5M"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "美錄梅塔",
|
||||
th: "เมลเมทัล"
|
||||
},
|
||||
|
||||
illustrator: "Oswaldo KATO",
|
||||
category: "Pokemon",
|
||||
hp: 160,
|
||||
types: ["Metal"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "壽命快到盡頭的時候,身體就會生鏽解體。到最後 細小的碎片會復活為美錄坦。",
|
||||
th: "เมื่อถึงอายุขัย ร่างกายก็จะเริ่มขึ้นสนิมและพังทลายลง แต่สะเก็ดชิ้นเล็ก ๆ ของมันจะฟื้นกลับคืนเป็นเมลตันในไม่ช้า"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "頭突",
|
||||
th: "ตบหนัก"
|
||||
},
|
||||
|
||||
damage: 120,
|
||||
cost: ["Metal", "Metal", "Colorless"]
|
||||
}, {
|
||||
name: {
|
||||
'zh-tw': "鐵之猛擊",
|
||||
th: "ไอออนแบช"
|
||||
},
|
||||
|
||||
damage: 230,
|
||||
cost: ["Metal", "Metal", "Metal", "Metal", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Grass",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 4,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user