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

51 lines
726 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 "../SC2a"
const card: Card = {
set: Set,
name: {
'zh-tw': "甜舞妮"
},
illustrator: "sui",
category: "Pokemon",
hp: 80,
types: ["Grass"],
description: {
'zh-tw': "像跳舞那樣轉圈,釋放出甜甜的香氣。聞到那香氣便會感到幸福。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "誘惑"
},
effect: {
'zh-tw': "選擇1隻對手的備戰寶可夢與戰鬥寶可夢互換。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "掌擊"
},
damage: 40,
cost: ["Grass", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card