mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
22 lines
363 B
TypeScript
22 lines
363 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SJ"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "彼特"
|
||
},
|
||
|
||
illustrator: "Naoki Saito",
|
||
category: "Trainer",
|
||
|
||
effect: {
|
||
'zh-tw': "從自己的手牌選擇1張基本能量卡,附於備戰寶可夢身上。"
|
||
},
|
||
|
||
trainerType: "Supporter",
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card |