mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
22 lines
387 B
TypeScript
22 lines
387 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SV-P"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "寇沙"
|
||
},
|
||
|
||
illustrator: "GIDORA",
|
||
category: "Trainer",
|
||
|
||
effect: {
|
||
'zh-tw': "將自己的所有手牌放回牌庫並重洗。然後,從牌庫抽出比放回張數多1張的卡。"
|
||
},
|
||
|
||
trainerType: "Supporter",
|
||
regulationMark: "G"
|
||
}
|
||
|
||
export default card |