mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
22 lines
454 B
TypeScript
22 lines
454 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../S10D"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
'zh-tw': "剛石"
|
|
},
|
|
|
|
illustrator: "Souichirou Gunjima",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
'zh-tw': "這張卡必須從自己的手牌將2張【鋼】能量卡丟棄才可使用。從自己的牌庫任意選擇最多2張卡加入手牌。並且重洗牌庫。"
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
regulationMark: "F"
|
|
}
|
|
|
|
export default card |