1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

53 lines
868 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 "../SV1V"
const card: Card = {
set: Set,
name: {
ja: "ホシガリス"
},
illustrator: "Teeziro",
category: "Pokemon",
dexId: [819],
hp: 60,
types: ["Colorless"],
description: {
ja: "どんなに お腹いっぱい 食べても また 腹ペコになるのが 不安で 頬と 尻尾に 木の実を 溜める。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
ja: "すあなにかくす"
},
effect: {
ja: "自分の番に1回使える。自分の手札をすべてウラにして切り、山札の下にもどす。その後、山札を1枚引く。"
}
}],
attacks: [{
cost: ["Colorless", "Colorless"],
name: {
ja: "かみつく"
},
damage: 20
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1
}
export default card