mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
29 lines
794 B
TypeScript
29 lines
794 B
TypeScript
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 |