mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
35 lines
459 B
TypeScript
35 lines
459 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SCD"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "天秤偶"
|
||
},
|
||
|
||
illustrator: "Sumiyoshi Kizuki",
|
||
category: "Pokemon",
|
||
hp: 60,
|
||
types: ["Fighting"],
|
||
stage: "Basic",
|
||
|
||
attacks: [{
|
||
name: {
|
||
'zh-tw': "掌擊"
|
||
},
|
||
|
||
damage: 20,
|
||
cost: ["Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Grass",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |