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

51 lines
875 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': "優雅貓"
},
illustrator: "Tika Matsuno",
category: "Pokemon",
hp: 100,
types: ["Colorless"],
description: {
'zh-tw': "過著居無定所生活的寶可夢。即使有其他寶可夢接近自己睡覺的地方也絕不會去爭鬥,而會換個地方睡覺。"
},
stage: "Stage1",
attacks: [{
name: {
'zh-tw': "媚惑之尾"
},
effect: {
'zh-tw': "選擇1隻對手的備戰寶可夢與戰鬥寶可夢互換。然後將新上場的寶可夢【混亂】。"
},
cost: ["Colorless"]
}, {
name: {
'zh-tw': "月亮衝擊"
},
damage: 90,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card