mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
35 lines
498 B
TypeScript
35 lines
498 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SVD"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
'zh-tw': "迷你龍"
|
|
},
|
|
|
|
illustrator: "satoma",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Dragon"],
|
|
|
|
description: {
|
|
'zh-tw': "會在直瀉而下的瀑布保護下反覆蛻皮, 使身體變得越來越大。"
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
'zh-tw': "尾鞭"
|
|
},
|
|
|
|
damage: 20,
|
|
cost: ["Colorless"]
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "G"
|
|
}
|
|
|
|
export default card |