mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
52 lines
755 B
TypeScript
52 lines
755 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SCC"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "可多拉"
|
||
},
|
||
|
||
illustrator: "HYOGONOSUKE",
|
||
category: "Pokemon",
|
||
hp: 100,
|
||
types: ["Metal"],
|
||
|
||
description: {
|
||
'zh-tw': "有著用鋼甲撞擊岩石時產生的火花大小來顯示自己有多強大的習性。"
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "撞擊"
|
||
},
|
||
|
||
damage: 50,
|
||
cost: ["Metal", "Colorless", "Colorless"]
|
||
}, {
|
||
name: {
|
||
'zh-tw': "金屬爪"
|
||
},
|
||
|
||
damage: 90,
|
||
cost: ["Metal", "Metal", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fire",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Grass",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 3,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |