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

46 lines
699 B
TypeScript
Raw Permalink 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 "../SVD"
const card: Card = {
set: Set,
name: {
'zh-tw': "哈克龍"
},
illustrator: "Misa Tsutsui",
category: "Pokemon",
hp: 100,
types: ["Dragon"],
description: {
'zh-tw': "據說牠全身上下散發出氣場時,周圍的天氣 就會在轉眼間為之一變。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "衝撞"
},
damage: 30,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "龍尾"
},
effect: {
'zh-tw': "擲2次硬幣造成正面出現的次數×70點傷害。"
},
damage: "70×",
cost: ["Water", "Lightning"]
}],
retreat: 2,
regulationMark: "G"
}
export default card