mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
22 lines
343 B
TypeScript
22 lines
343 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../SH"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
'zh-tw': "西餐廚師"
|
|
},
|
|
|
|
illustrator: "Sanosuke Sakuma",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
'zh-tw': "將自己的戰鬥寶可夢恢復「70」HP。"
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
regulationMark: "E"
|
|
}
|
|
|
|
export default card |