1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 03:29:51 +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/099.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: "MARINA Chikazawa",
effect: {
ja: "エネルギーがついているおたがいのポケモン全員は、特殊状態にならず、受けている特殊状態は、すべて回復する。",
'zh-tw': "雙方的所有身上附有能量卡的寶可夢不會陷入特殊狀態,並將受到的特殊狀態全部恢復。"
},
trainerType: "Stadium",
regulationMark: "H"
}
export default card