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

50 lines
818 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 "../SVEM"
const card: Card = {
set: Set,
name: {
'zh-tw': "超夢ex"
},
illustrator: "aky CG Works",
category: "Pokemon",
hp: 230,
types: ["Lightning"],
stage: "Basic",
suffix: "EX",
attacks: [{
name: {
'zh-tw': "轉移充能"
},
effect: {
'zh-tw': "從自己的棄牌區選擇最多2張「基本【超】能量」卡以任意方式附於自己的寶可夢身上。"
},
cost: ["Psychic"]
}, {
name: {
'zh-tw': "光子強念"
},
effect: {
'zh-tw': "增加自己的所有寶可夢身上附加的【超】能量的數量×30點傷害。"
},
damage: "10+",
cost: ["Psychic", "Psychic"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card