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

55 lines
791 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 "../S4"
const card: Card = {
set: Set,
name: {
'zh-tw': "胡地V"
},
illustrator: "Ayaka Yoshida",
category: "Pokemon",
hp: 190,
types: ["Psychic"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "意念之匙"
},
effect: {
'zh-tw': "將3個傷害指示物以任意方式放置於對手的寶可夢身上。"
},
cost: ["Psychic"]
}, {
name: {
'zh-tw': "意志統治者"
},
effect: {
'zh-tw': "造成對手的手牌的張數×30點傷害。"
},
damage: "30×",
cost: ["Psychic", "Psychic"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "D"
}
export default card