1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +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

25
data-asia/S/S9a/067.ts Normal file
View File

@ -0,0 +1,25 @@
import { Card } from "../../../interfaces"
import Set from "../S9a"
const card: Card = {
set: Set,
name: {
'zh-tw': "祝慶村",
ja: "コトブキムラ"
},
illustrator: "Oswaldo KATO",
category: "Trainer",
effect: {
'zh-tw': "雙方玩家在每個自己的回合時可使用1次可將自己的手牌全部放回牌庫並重洗。這個情況下從自己的牌庫抽出5張卡。若使用了這個效果則自己的回合結束。",
ja: "おたがいのプレイヤーは、自分の番ごとに1回、自分の手札をすべて山札にもどして切ってよい。その場合、自分の山札を5枚引く。この効果を使ったなら、自分の番は終わる。"
},
trainerType: "Stadium",
regulationMark: "F",
rarity: "Uncommon"
}
export default card