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

30
data-asia/SV/SV6/098.ts Normal file
View File

@ -0,0 +1,30 @@
import { Card } from "../../../interfaces"
import Set from "../SV6"
const card: Card = {
set: Set,
name: {
ja: "ハッサク",
'zh-tw': "八朔"
},
category: "Trainer",
rarity: "Uncommon",
description: {
},
illustrator: "GOSSAN",
effect: {
ja: "このカードは、前の相手の番に、自分のポケモンがきぜつしていなければ使えない。\n\n自分の山札を上から8枚見て、その中からカードを3枚まで選び、手札に加える。残りのカードは山札にもどして切る。",
'zh-tw': "這張卡必須在上個對手的回合自己的寶可夢【昏厥】了才可使用。 查看自己的牌庫上方8張卡從其中選擇最多3張卡加入手牌。將剩餘卡放回牌庫並重洗。"
},
trainerType: "Supporter",
regulationMark: "H"
}
export default card