1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-04 13:21:58 +00:00

feat: add database update (#825)

This commit is contained in:
2025-07-19 18:58:03 +02:00
committed by GitHub
parent aa68bfccf2
commit 651346dff7
354 changed files with 21377 additions and 7 deletions

View File

@@ -0,0 +1,34 @@
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