mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-25 09:29:55 +00:00
72 lines
1.8 KiB
TypeScript
72 lines
1.8 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Fusion Strike"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Indeedee",
|
|
fr: "Wimessir",
|
|
es: "Indeedee",
|
|
it: "Indeedee",
|
|
pt: "Indeedee",
|
|
de: "Servol"
|
|
},
|
|
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
hp: 100,
|
|
types: ["Psychic"],
|
|
stage: "Basic",
|
|
retreat: 1,
|
|
regulationMark: "E",
|
|
illustrator: "Misa Tsutsui",
|
|
|
|
description: {
|
|
en: "They diligently serve people and Pokémon so they can gather feelings of gratitude. The females are particularly good at babysitting."
|
|
},
|
|
|
|
attacks: [{
|
|
cost: ["Psychic"],
|
|
|
|
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: ["Psychic", "Colorless", "Colorless"],
|
|
|
|
name: {
|
|
en: "Heart Sign",
|
|
fr: "Signe de Cœur",
|
|
de: "Herzbild",
|
|
es: "Señal Corazón",
|
|
pt: "Sinal de Coração",
|
|
it: "Cuoricino"
|
|
},
|
|
|
|
damage: 80
|
|
}],
|
|
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |