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

51 lines
774 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 "../SC2D"
const card: Card = {
set: Set,
name: {
'zh-tw': "霜奶仙V"
},
illustrator: "Ayaka Yoshida",
category: "Pokemon",
hp: 170,
types: ["Psychic"],
stage: "Basic",
suffix: "V",
attacks: [{
name: {
'zh-tw': "嘩嘩糖雨"
},
effect: {
'zh-tw': "將自己的所有備戰寶可夢各恢復「30」HP。"
},
cost: ["Psychic"]
}, {
name: {
'zh-tw': "甜蜜飛濺"
},
effect: {
'zh-tw': "在下個對手的回合,受到這個招式的【基礎】寶可夢,無法使用招式。"
},
damage: 100,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "D"
}
export default card