1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39:17 +00:00

feat: Add support for Asians Pokémon Cards (#481)

This commit is contained in:
2024-06-07 12:53:08 +02:00
committed by GitHub
parent a35fadd50c
commit a26ef0e5eb
8069 changed files with 379200 additions and 423 deletions

29
data-asia/SV/SV2D/068.ts Normal file
View File

@ -0,0 +1,29 @@
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