mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
46 lines
647 B
TypeScript
46 lines
647 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SC2a"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "夢幻V"
|
||
},
|
||
|
||
illustrator: "PLANETA Mochizuki",
|
||
category: "Pokemon",
|
||
hp: 180,
|
||
types: ["Psychic"],
|
||
stage: "Basic",
|
||
suffix: "V",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "謎幻球"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "造成雙方的戰鬥寶可夢身上附加的能量的數量×30點傷害。"
|
||
},
|
||
|
||
damage: "30×",
|
||
cost: ["Psychic", "Psychic"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Darkness",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 0,
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card
|