mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-30 19:40:48 +00:00
34 lines
992 B
TypeScript
34 lines
992 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Black Bolt"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "N's Plan",
|
|
fr: "Plan de N",
|
|
de: "Ns Plan",
|
|
it: "Piano di N",
|
|
pt: "Plano do N",
|
|
es: "Plan de N",
|
|
'es-mx': "Plan de N"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Move up to 2 Energy from your Benched Pokémon to your Active Pokémon.",
|
|
fr: "Déplacez jusqu'à 2 Énergies de vos Pokémon de Banc vers votre Pokémon Actif.",
|
|
de: "Verschiebe bis zu 2 Energien von Pokémon auf deiner Bank auf dein Aktives Pokémon.",
|
|
it: "Sposta fino a due Energie dai tuoi Pokémon in panchina al tuo Pokémon attivo.",
|
|
pt: "Mova até 2 Energias dos seus Pokémon no Banco para o seu Pokémon Ativo.",
|
|
es: "Mueve hasta 2 Energías de tus Pokémon en Banca a tu Pokémon Activo.",
|
|
'es-mx': "Mueve hasta 2 Energías de tus Pokémon en Banca a tu Pokémon Activo."
|
|
},
|
|
|
|
trainerType: "Supporter",
|
|
regulationMark: "I"
|
|
}
|
|
|
|
export default card |