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

53 lines
827 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 "../SV9"
const card: Card = {
set: Set,
name: {
ja: "ココッチex"
},
illustrator: "5ban Graphics",
rarity: "None",
category: "Pokemon",
hp: 270,
types: ["Colorless"],
stage: "Stage1",
suffix: "EX",
attacks: [{
cost: ["Colorless"],
name: {
ja: "ぎゃっきょうテール"
},
damage: "60×",
effect: {
ja: "相手の場の「ポケモンex」の数×60ダメージ。"
}
}, {
cost: ["Colorless", "Colorless", "Colorless"],
name: {
ja: "ドリルブレイク"
},
damage: 150,
effect: {
ja: "このワザのダメージは、相手のバトルポケモンにかかっている効果を計算しない。"
}
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 3
}
export default card