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

53 lines
780 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 "../SV2D"
const card: Card = {
set: Set,
name: {
ja: "ヘラクロス"
},
illustrator: "Kurata So",
category: "Pokemon",
dexId: [214],
hp: 130,
types: ["Grass"],
description: {
ja: "甘いミツが 大好きで 独り占め するため 自慢のツノを 使って 相手を ぶん投げる。"
},
stage: "Basic",
attacks: [{
cost: ["Grass", "Grass"],
name: {
ja: "たいあたり"
},
damage: 50
}, {
cost: ["Grass", "Grass", "Grass"],
name: {
ja: "スマッシュホーン"
},
damage: 110,
effect: {
ja: "このワザのダメージは抵抗力を計算しない。"
}
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 3
}
export default card