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

56 lines
900 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 "../S11a"
const card: Card = {
set: Set,
name: {
'zh-tw': "光輝甜冷美后"
},
illustrator: "Kagemaru Himeno",
category: "Pokemon",
hp: 140,
types: ["Grass"],
description: {
'zh-tw': "讓人畏懼的寶可夢。擁有苗條的雙腿和殘忍的心,會毫不留情地狠踩敵人。"
},
stage: "Basic",
abilities: [{
type: "Ability",
name: {
'zh-tw': "優雅治癒"
},
effect: {
'zh-tw': "在自己的回合時可使用1次。將自己的所有寶可夢各恢復「20」HP。"
}
}],
attacks: [{
name: {
'zh-tw': "芳香射擊"
},
effect: {
'zh-tw': "將這隻寶可夢的特殊狀態全部恢復。"
},
damage: 90,
cost: ["Grass", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fire",
value: "×2"
}],
retreat: 2,
regulationMark: "F"
}
export default card