mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
25 lines
487 B
TypeScript
25 lines
487 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../S9"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
'zh-tw': "美味之水組合",
|
|
ja: "おいしいみずセット"
|
|
},
|
|
|
|
illustrator: "AYUMI ODASHIMA",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
'zh-tw': "將自己的所有寶可夢各恢復「20」HP。",
|
|
ja: "自分のポケモン全員のHPを、それぞれ「20」回復する。"
|
|
},
|
|
|
|
trainerType: "Item",
|
|
regulationMark: "F",
|
|
rarity: "Uncommon"
|
|
}
|
|
|
|
export default card |