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

52 lines
757 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 "../S-P"
const card: Card = {
set: Set,
name: {
'zh-tw': "超夢V"
},
illustrator: "PLANETA Mochizuki",
category: "Pokemon",
hp: 220,
types: ["Psychic"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "超念力"
},
damage: 50,
cost: ["Psychic", "Colorless"]
}, {
name: {
'zh-tw': "轉移破壞"
},
effect: {
'zh-tw': "選擇1個這隻寶可夢身上附加的能量改附於備戰寶可夢身上。"
},
damage: 160,
cost: ["Psychic", "Psychic", "Colorless"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
regulationMark: "F"
}
export default card