mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
37 lines
474 B
TypeScript
37 lines
474 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SI"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
'zh-tw': "斧牙龍"
|
|
},
|
|
|
|
illustrator: "Hataya",
|
|
category: "Pokemon",
|
|
hp: 100,
|
|
types: ["Dragon"],
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
name: {
|
|
'zh-tw': "銳利之牙"
|
|
},
|
|
|
|
damage: 30,
|
|
cost: ["Colorless"]
|
|
}, {
|
|
name: {
|
|
'zh-tw': "龍爪"
|
|
},
|
|
|
|
damage: 60,
|
|
cost: ["Fighting", "Metal"]
|
|
}],
|
|
|
|
retreat: 2,
|
|
regulationMark: "F"
|
|
}
|
|
|
|
export default card |