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

50 lines
740 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: "Atsushi Furusawa",
category: "Pokemon",
dexId: [662],
hp: 80,
types: ["Fire"],
description: {
ja: "虫ポケモンが 潜んでいそうな 草むらに 火の粉を まき散らして 飛び出してきたところを 捕まえる。"
},
stage: "Stage1",
attacks: [{
cost: ["Fire"],
name: {
ja: "ヒートダイブ"
},
damage: 50,
effect: {
ja: "このポケモンにも10ダメージ。"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 1
}
export default card