mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-24 11:52:16 +00:00
30 lines
649 B
TypeScript
30 lines
649 B
TypeScript
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 |