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

60 lines
1.0 KiB
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 "../SV6a"
const card: Card = {
set: Set,
name: {
'zh-tw': "克雷色利亞"
},
illustrator: "matazo",
category: "Pokemon",
hp: 120,
types: ["Psychic"],
description: {
'zh-tw': "飛行時,會從薄紗般的翅膀 發出閃亮的粒子。 被稱為新月的化身。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "治癒之舞"
},
effect: {
'zh-tw': "將自己的所有寶可夢各恢復「20」HP。"
},
cost: ["Psychic"]
}, {
name: {
'zh-tw': "弦月光芒"
},
effect: {
'zh-tw': "若希望選擇1張自己的反面朝上的獎賞卡翻到正面。這個情況下增加80點傷害。在對戰結束前那張獎賞卡維持正面朝上。"
},
damage: "80+",
cost: ["Psychic", "Psychic", "Psychic"]
}],
weaknesses: [{
type: "Darkness",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 1,
regulationMark: "H",
rarity: "Rare"
}
export default card