1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00

66 lines
1.6 KiB
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Astral Radiance"
const card: Card = {
set: Set,
name: {
en: "Hisuian Basculin",
fr: "Bargantua de Hisui",
es: "Basculin de Hisui",
it: "Basculin di Hisui",
pt: "Basculin de Hisui",
de: "Hisui-Barschuft"
},
rarity: "Common",
category: "Pokemon",
hp: 50,
types: ["Water"],
stage: "Basic",
attacks: [{
name: {
en: "Gather the Crew",
fr: "Réunion des Troupes",
es: "Juntar al Equipo",
it: "Squadra a Raccolta",
pt: "Juntar a Galera",
de: "Alle an Bord"
},
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.",
es: "Busca en tu baraja hasta 2 Pokémon Básicos y ponlos en tu Banca. Después, baraja las cartas de tu baraja.",
it: "Cerca nel tuo mazzo fino a due Pokémon Base e mettili nella tua panchina. Poi rimischia le carte del tuo mazzo.",
pt: "Procure por até 2 Pokémon Básicos 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 und lege sie auf deine Bank. Mische anschließend dein Deck."
}
}, {
cost: ["Water"],
name: {
en: "Tackle",
fr: "Charge",
es: "Placaje",
it: "Azione",
pt: "Investida",
de: "Tackle"
},
damage: 10
}],
retreat: 1,
regulationMark: "F",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card