1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

48 lines
705 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "雙首暴龍"
},
illustrator: "tetsuya koizumi",
category: "Pokemon",
hp: 100,
types: ["Darkness"],
description: {
'zh-tw': "在自己的領地走來走去,尋找食物。2個頭時常會為了前進的方向而爭吵。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "推擊"
},
damage: 30,
cost: ["Darkness", "Colorless"]
}, {
name: {
'zh-tw': "暗之牙"
},
damage: 70,
cost: ["Darkness", "Darkness", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card