mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
44 lines
674 B
TypeScript
44 lines
674 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S8a"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "飛翔皮卡丘VMAX"
|
||
},
|
||
|
||
illustrator: "aky CG Works",
|
||
category: "Pokemon",
|
||
hp: 310,
|
||
types: ["Lightning"],
|
||
stage: "VMAX",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "極巨氣球"
|
||
},
|
||
|
||
effect: {
|
||
'zh-tw': "在下個對手的回合,這隻寶可夢不會受到【基礎】寶可夢招式的傷害。"
|
||
},
|
||
|
||
damage: 160,
|
||
cost: ["Lightning", "Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
}],
|
||
|
||
retreat: 0,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |