1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

27 lines
1000 B
TypeScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../SV3"
const card: Card = {
set: Set,
name: {
ja: "ポケモンリーグ本部",
'zh-tw': "寶可夢聯盟總部",
th: "สำนักงานใหญ่โปเกมอนลีก"
},
illustrator: "Oswaldo KATO",
rarity: "Uncommon",
category: "Trainer",
effect: {
ja: "おたがいの場のたねポケモンがワザを使うためのエネルギーは、それぞれエネルギー1個ぶん多くなる。",
'zh-tw': "雙方場上【基礎】寶可夢使用招式所需的能量各增加1個【無】能量。",
th: "พลังงานสำหรับใช้ท่าต่อสู้ของโปเกมอน[พื้นฐาน]บนกระดานของทั้งสองฝ่าย แต่ละตัวจะใช้พลังงาน[ไร้สี]เพิ่มขึ้น 1 ลูก"
},
trainerType: "Stadium",
regulationMark: "G"
}
export default card