mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
23 lines
384 B
TypeScript
23 lines
384 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SV6a"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
'zh-tw': "庫瑟洛斯奇的企圖"
|
|
},
|
|
|
|
illustrator: "GOSSAN",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
'zh-tw': "對手將對手自己的手牌丟棄直到變為3張為止。"
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
regulationMark: "H",
|
|
rarity: "Uncommon"
|
|
}
|
|
|
|
export default card |