mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
23 lines
378 B
TypeScript
23 lines
378 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SC1b"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "呐喊隊手下"
|
||
},
|
||
|
||
illustrator: "nagimiso",
|
||
category: "Trainer",
|
||
|
||
effect: {
|
||
'zh-tw': "選擇1個對手的場上寶可夢身上附加的能量,放回對手的手牌。"
|
||
},
|
||
|
||
trainerType: "Supporter",
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card
|