1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00

55 lines
809 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 "../SV5a"
const card: Card = {
set: Set,
name: {
ja: "ヒスイ ガーディ"
},
illustrator: "GIDORA",
category: "Pokemon",
dexId: [58],
hp: 80,
types: ["Fighting"],
description: {
ja: "対になりて 縄張りを 哨戒す。 体毛に 火成岩なる 成分 混ざるは 火山活動の 影響と 推察す。"
},
stage: "Basic",
attacks: [{
name: {
ja: "まるやけ"
},
effect: {
ja: "場に出ているスタジアムをトラッシュする。"
}
}, {
cost: ["Fighting", "Colorless"],
name: {
ja: "とっしん"
},
damage: 40,
effect: {
ja: "このポケモンにも10ダメージ。"
}
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2
}
export default card