1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00

50 lines
828 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 "../S9a"
const card: Card = {
set: Set,
name: {
ja: "ヒスイ ダイケンキV"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 220,
types: ["Darkness"],
stage: "Basic",
suffix: "V",
attacks: [{
cost: ["Darkness"],
name: {
ja: "つづらおとし"
},
effect: {
ja: "相手の場のポケモンについている「ポケモンのどうぐ」を2枚まで選び、トラッシュする。"
}
}, {
cost: ["Darkness", "Darkness", "Darkness"],
name: {
ja: "シャドースラッシュ"
},
damage: 180,
effect: {
ja: "このポケモンについているエネルギーを1個選び、トラッシュする。"
}
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 2
}
export default card