mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
22 lines
453 B
TypeScript
22 lines
453 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../S6H"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "粗硬頭盔"
|
||
},
|
||
|
||
illustrator: "sadaji",
|
||
category: "Trainer",
|
||
|
||
effect: {
|
||
'zh-tw': "當附有這張卡的寶可夢在戰鬥場受到對手的寶可夢招式的傷害時,選擇1個使用招式的寶可夢身上附加的能量,放回對手的手牌。"
|
||
},
|
||
|
||
trainerType: "Tool",
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |