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

47 lines
650 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 "../Sc1a"
const card: Card = {
set: Set,
name: {
'zh-tw': "天秤偶"
},
illustrator: "Uta",
category: "Pokemon",
hp: 70,
types: ["Fighting"],
description: {
'zh-tw': "用單腳一邊旋轉一邊移動。有時候也能看到顛倒過來旋轉的天秤偶。"
},
stage: "Basic",
attacks: [{
name: {
'zh-tw': "光束"
},
damage: 10,
cost: ["Colorless"]
}, {
name: {
'zh-tw': "沙沫"
},
damage: 30,
cost: ["Fighting", "Fighting"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 1,
regulationMark: "D"
}
export default card