mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
52 lines
757 B
TypeScript
52 lines
757 B
TypeScript
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 |