mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
23 lines
373 B
TypeScript
23 lines
373 B
TypeScript
import { Card } from "../../../interfaces"
|
||
import Set from "../SC2a"
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
name: {
|
||
'zh-tw': "哞哞乳酪"
|
||
},
|
||
|
||
illustrator: "5ban Graphics",
|
||
category: "Trainer",
|
||
|
||
effect: {
|
||
'zh-tw': "選擇最多2隻自己的身上附有能量的寶可夢,各恢復「30」HP。"
|
||
},
|
||
|
||
trainerType: "Item",
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card
|