mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
22 lines
352 B
TypeScript
22 lines
352 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../S4a"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
'zh-tw': "呐喊隊加油毛巾"
|
|
},
|
|
|
|
illustrator: "Studio Bora Inc.",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
'zh-tw': "將雙方的戰鬥寶可夢各恢復「50」HP。"
|
|
},
|
|
|
|
trainerType: "Item",
|
|
regulationMark: "D"
|
|
}
|
|
|
|
export default card |