mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
55 lines
862 B
TypeScript
55 lines
862 B
TypeScript
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 |