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

55 lines
862 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 "../S8"
const card: Card = {
set: Set,
name: {
'zh-tw': "夢幻V"
},
illustrator: "Mitsuhiro Arita",
category: "Pokemon",
hp: 180,
types: ["Psychic"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "能量混和"
},
effect: {
'zh-tw': "從自己的牌庫選擇1張能量卡附於自己的「匯流」寶可夢身上。並且重洗牌庫。"
},
cost: ["Psychic"]
}, {
name: {
'zh-tw': "精神之跳"
},
effect: {
'zh-tw': "若希望,將這隻寶可夢與附加的卡,全部放回自己的牌庫並重洗。"
},
damage: 70,
cost: ["Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 0,
regulationMark: "E"
}
export default card