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

29 lines
794 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV2D"
const card: Card = {
set: Set,
name: {
ja: "サワロ",
'zh-tw': "薩瓦羅",
th: "ซากัวโร",
id: "Saguro"
},
illustrator: "nagimiso",
rarity: "Uncommon",
category: "Trainer",
effect: {
ja: "自分のポケモンを2匹まで選び、HPをそれぞれ「50」回復する。",
'zh-tw': "選擇最多2隻自己的寶可夢各恢復「50」HP。",
th: "เลือกโปเกมอนฝ่ายเราได้สูงสุด 2 ตัว ฟื้นฟู HP แต่ละตัวตัวละ [50]",
id: "Pilih paling banyak 2 Pokémon sendiri, lalu pulihkan HP masing-masing sejumlah 50."
},
trainerType: "Supporter",
regulationMark: "G"
}
export default card