mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
54 lines
844 B
TypeScript
54 lines
844 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S8"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "夢幻VMAX"
|
||
},
|
||
|
||
illustrator: "5ban Graphics",
|
||
category: "Pokemon",
|
||
hp: 310,
|
||
types: ["Psychic"],
|
||
stage: "VMAX",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "交錯匯流"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "選擇自己的備戰區的「匯流」寶可夢持有的1個招式,作為這個招式使用。"
|
||
},
|
||
|
||
cost: ["Colorless", "Colorless"]
|
||
}, {
|
||
name: {
|
||
'zh-tw': "極巨奇跡"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "這個招式的傷害不計算對手的戰鬥寶可夢身上的附加效果。"
|
||
},
|
||
|
||
damage: 130,
|
||
cost: ["Psychic", "Psychic"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Darkness",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 0,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |