1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

21 lines
347 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../SV2D"
const card: Card = {
set: Set,
name: {
ja: "サワロ"
},
illustrator: "Sanosuke Sakuma",
category: "Trainer",
effect: {
ja: "自分のポケモンを2匹まで選び、HPをそれぞれ「50」回復する。"
},
trainerType: "Supporter"
}
export default card