mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 16:39:18 +00:00
feat: Add support for Asians Pokémon Cards (#481)
This commit is contained in:
45
data-asia/S/S10a/051.ts
Normal file
45
data-asia/S/S10a/051.ts
Normal file
@ -0,0 +1,45 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../S10a"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
'zh-tw': "銅鏡怪"
|
||||
},
|
||||
|
||||
illustrator: "Tomokazu Komiya",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Metal"],
|
||||
|
||||
description: {
|
||||
'zh-tw': "會在古老的遺跡出現。身上的紋路不屬於伽勒爾文化, 因此至今仍然謎團重重。"
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
'zh-tw': "迴轉攻擊"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: "Grass",
|
||||
value: "-30"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user