1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

27 lines
718 B
TypeScript
Raw 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 "../SV9"
const card: Card = {
set: Set,
name: {
ja: "Nのポイントアップ",
'zh-tw': "N的提升劑",
'zh-cn': "N的提升劑"
},
illustrator: "Toyste Beach",
rarity: "Uncommon",
category: "Trainer",
effect: {
ja: "自分のトラッシュから基本エネルギーを1枚選び、ベンチの「Nのポケモン」につける。",
'zh-tw': "從自己的棄牌區選擇1張基本能量卡附於備戰區的「N的寶可夢」身上。",
'zh-cn': "從自己的棄牌區選擇1張基本能量卡附於備戰區的「N的寶可夢」身上。"
},
trainerType: "Item",
regulationMark: "I"
}
export default card