1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +00:00

feat: Add shrouded fable cards (#525)

This commit is contained in:
2024-08-25 02:44:42 +02:00
committed by GitHub
parent 80f483ab66
commit cfd6d5c0e8
101 changed files with 5742 additions and 1 deletions

View File

@ -0,0 +1,32 @@
import { Card } from "../../../interfaces"
import Set from "../Shrouded Fable"
const card: Card = {
set: Set,
name: {
en: "Night Stretcher",
fr: "Civière Nocturne",
es: "Camilla Nocturna",
it: "Barella Notturna",
pt: "Maca Noturna",
de: "Nachttrage"
},
rarity: "Uncommon",
category: "Trainer",
effect: {
en: "Put a Pokémon or a Basic Energy card from your discard pile into your hand.",
fr: "Ajoutez un Pokémon ou une carte Énergie de base de votre pile de défausse à votre main.",
es: "Pon 1 Pokémon o 1 carta de Energía Básica de tu pila de descartes en tu mano.",
it: "Prendi un Pokémon o una carta Energia base dalla tua pila degli scarti e aggiungi la carta a quelle che hai in mano.",
pt: "Coloque um Pokémon ou uma carta de Energia Básica da sua pilha de descarte na sua mão.",
de: "Nimm 1 Pokémon oder 1 Basis-Energiekarte aus deinem Ablagestapel auf deine Hand."
},
trainerType: "Item",
regulationMark: "H"
}
export default card