1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 10:52:10 +00:00

48 lines
683 B
TypeScript
Raw Permalink 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 "../SC2D"
const card: Card = {
set: Set,
name: {
'zh-tw': "沙奈朵V"
},
illustrator: "Kagemaru Himeno",
category: "Pokemon",
hp: 210,
types: ["Psychic"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "魔法射擊"
},
damage: 30,
cost: ["Psychic"]
}, {
name: {
'zh-tw': "充溢波動"
},
effect: {
'zh-tw': "在這個回合若這隻寶可夢恢復了HP則增加80點傷害。"
},
damage: "120+",
cost: ["Psychic", "Psychic", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card