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

29 lines
793 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 "../SV8a"
const card: Card = {
set: Set,
name: {
ja: "ピーニャ",
id: "Nanio",
'zh-tw': "皮拿",
'zh-cn': "皮拿"
},
illustrator: "GOSSAN",
rarity: "None",
category: "Trainer",
effect: {
ja: "相手のポケモン全員についている特殊エネルギーをそれぞれ1個ずつ選び、トラッシュする。",
id: "Pilih Energi Spesial yang dikenakan pada semua Pokémon lawan masing-masing 1, lalu buang ke Trash.",
'zh-tw': "選擇對手的所有寶可夢身上各自附加的特殊能量各1個將其丟棄。",
'zh-cn': "選擇對手的所有寶可夢身上各自附加的特殊能量各1個將其丟棄。"
},
trainerType: "Supporter",
regulationMark: "G"
}
export default card