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

57 lines
847 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: "ヤドキングex"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 270,
types: ["Psychic"],
stage: "Stage1",
suffix: "EX",
attacks: [{
cost: ["Psychic"],
name: {
ja: "うんちく"
},
damage: 30,
effect: {
ja: "相手のバトルポケモンをこんらんにする。"
}
}, {
cost: ["Psychic", "Psychic"],
name: {
ja: "ウィズダムヘッド"
},
damage: 130,
effect: {
ja: "のぞむなら、自分の山札から好きなカードを2枚まで選び、手札に加える。そして山札を切る。"
}
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "30"
}],
retreat: 3
}
export default card