mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
22 lines
356 B
TypeScript
22 lines
356 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S5R"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "馬士德 連擊流"
|
||
},
|
||
|
||
illustrator: "Naoki Saito",
|
||
category: "Trainer",
|
||
|
||
effect: {
|
||
'zh-tw': "在自己的回合時,支援者卡只可使用1張。"
|
||
},
|
||
|
||
trainerType: "Supporter",
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |