mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
36 lines
1.3 KiB
TypeScript
36 lines
1.3 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Temporal Forces"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Buddy-Buddy Poffin",
|
|
fr: "Poffin Copain-Copain",
|
|
es: "Pokochos Gemelos",
|
|
it: "Poffin del Cuore",
|
|
pt: "Poffin de Colega",
|
|
de: "Dicke-Freunde-Knursp"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Trainer",
|
|
|
|
effect: {
|
|
en: "Search your deck for up to 2 Basic Pokémon with 70 HP or less and put them onto your Bench. Then, shuffle your deck.",
|
|
fr: "Cherchez dans votre deck jusqu'à 2 Pokémon de base ayant 70 PV ou moins et placez-les sur votre Banc. Mélangez ensuite votre deck.",
|
|
es: "Busca en tu baraja hasta 2 Pokémon Básicos con 70 PS o menos y ponlos en tu Banca. Después, baraja las cartas de tu baraja.",
|
|
it: "Cerca nel tuo mazzo fino a due Pokémon Base con 70 PS o meno e mettili nella tua panchina. Poi rimischia le carte del tuo mazzo.",
|
|
pt: "Procure por até 2 Pokémon Básicos com 70 PS ou menos no seu baralho e coloque-os no seu Banco. Em seguida, embaralhe o seu baralho.",
|
|
de: "Durchsuche dein Deck nach bis zu 2 Basis-Pokémon mit 70 oder weniger KP und lege sie auf deine Bank. Mische anschließend dein Deck."
|
|
},
|
|
|
|
trainerType: "Item",
|
|
regulationMark: "H",
|
|
|
|
variants: {
|
|
holo: false
|
|
}
|
|
}
|
|
|
|
export default card |