mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-25 09:29:55 +00:00
73 lines
1.7 KiB
TypeScript
73 lines
1.7 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Fusion Strike"
|
|
|
|
const card: Card = {
|
|
dexId: [312],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Minun",
|
|
fr: "Négapi",
|
|
es: "Minun",
|
|
it: "Minun",
|
|
pt: "Minun",
|
|
de: "Minun"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 70,
|
|
types: ["Lightning"],
|
|
stage: "Basic",
|
|
retreat: 1,
|
|
regulationMark: "E",
|
|
illustrator: "HYOGONOSUKE",
|
|
|
|
description: {
|
|
en: "It cheers on friends. If its friends are losing, its body lets off more and more sparks."
|
|
},
|
|
|
|
attacks: [{
|
|
cost: ["Colorless"],
|
|
|
|
name: {
|
|
en: "Call for Family",
|
|
fr: "Appel à la Famille",
|
|
de: "Familienruf",
|
|
es: "Llamar a la Familia",
|
|
pt: "Chamar a Família",
|
|
it: "Cerca Famiglia"
|
|
},
|
|
|
|
effect: {
|
|
en: "Search your deck for up to 2 Basic Pokémon and put them onto your Bench. Then, shuffle your deck.",
|
|
fr: "Cherchez dans votre deck jusqu'à 2 Pokémon de base, puis placez-les sur votre Banc. Mélangez ensuite votre deck.",
|
|
de: "Durchsuche dein Deck nach bis zu 2 Basis-Pokémon und lege sie auf deine Bank. Mische anschließend dein Deck.",
|
|
es: "Busca en tu baraja hasta 2 Pokémon Básicos y ponlos en tu Banca. Después, baraja las cartas de tu baraja.",
|
|
pt: "Procure por até 2 Pokémon Básicos no seu baralho e coloque-os no seu Banco. Em seguida, embaralhe o seu baralho.",
|
|
it: "Cerca nel tuo mazzo fino a due Pokémon Base e mettili nella tua panchina. Poi rimischia le carte del tuo mazzo."
|
|
}
|
|
}, {
|
|
cost: ["Lightning"],
|
|
|
|
name: {
|
|
en: "Static Shock",
|
|
fr: "Choc Statique",
|
|
de: "Statischer Schock",
|
|
es: "Impacto Estático",
|
|
pt: "Choque de Estática",
|
|
it: "Shock Statico"
|
|
},
|
|
|
|
damage: 20
|
|
}],
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |