1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00

22 lines
365 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../SV8"
const card: Card = {
set: Set,
name: {
ja: "シトロンの機転"
},
illustrator: "Naoki Saito",
rarity: "Uncommon",
category: "Trainer",
effect: {
ja: "自分のポケモン全員のHPを、それぞれ「60」回復する。"
},
trainerType: "Supporter"
}
export default card