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

50 lines
809 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 "../SV2P"
const card: Card = {
set: Set,
name: {
ja: "ココガラ"
},
illustrator: "GOSSAN",
category: "Pokemon",
dexId: [821],
hp: 60,
types: ["Colorless"],
description: {
ja: "勇敢で 向こう見ずな 気質。 目の まわりの 白い 模様は 気弱な ポケモンを 怯ませる。"
},
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
ja: "つきかえす"
},
damage: 10,
effect: {
ja: "相手のバトルポケモンをベンチポケモンと入れ替える。[バトル場に出すポケモンは相手が選ぶ。]"
}
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 1
}
export default card