mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-02 12:19:53 +00:00
82 lines
1.8 KiB
TypeScript
82 lines
1.8 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../SWSH Black Star Promos'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
illustrator: "tetsuya koizumi",
|
||
category: "Pokemon",
|
||
|
||
description: {
|
||
en: "If it sees any movement around it, this Pokémon charges for it straightaway, leading with its sharply pointed jaw. It's very proud of that jaw."
|
||
},
|
||
|
||
stage: "Basic",
|
||
|
||
name: {
|
||
en: "Arrokuda",
|
||
fr: "Embrochet",
|
||
de: "Pikuda",
|
||
es: "Arrokuda",
|
||
pt: "Arrokuda",
|
||
it: "Arrokuda"
|
||
},
|
||
|
||
rarity: "None",
|
||
dexId: [846],
|
||
hp: 60,
|
||
types: ["Water"],
|
||
|
||
attacks: [{
|
||
cost: ["Colorless"],
|
||
|
||
name: {
|
||
en: "Flock",
|
||
fr: "Nuée",
|
||
de: "Ausschwärmen",
|
||
es: "Multitud",
|
||
pt: "Bando",
|
||
it: "Frotta"
|
||
},
|
||
|
||
effect: {
|
||
en: "Search your deck for up to 2 Arrokuda and put them onto your Bench. Then, shuffle your deck.",
|
||
fr: "Cherchez dans votre deck jusqu'à 2 Embrochet, puis placez-les sur votre Banc. Mélangez ensuite votre deck.",
|
||
de: "Durchsuche dein Deck nach bis zu 2 Pikuda und lege sie auf deine Bank. Mische anschließend dein Deck.",
|
||
es: "Busca en tu baraja hasta 2 cartas de Arrokuda y ponlas en tu Banca. Después, baraja las cartas de tu baraja.",
|
||
pt: "Procure por até 2 Arrokuda no seu baralho e coloque-os no seu Banco. Em seguida, embaralhe o seu baralho.",
|
||
it: "Cerca nel tuo mazzo fino a due Arrokuda e mettili nella tua panchina. Poi rimischia le carte del tuo mazzo."
|
||
}
|
||
}, {
|
||
cost: ["Water", "Colorless"],
|
||
|
||
name: {
|
||
en: "Peck",
|
||
fr: "Picpic",
|
||
de: "Pikser",
|
||
es: "Picotazo",
|
||
pt: "Bicada",
|
||
it: "Beccata"
|
||
},
|
||
|
||
damage: 20
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
|
||
variants: {
|
||
normal: false,
|
||
reverse: false,
|
||
holo: true,
|
||
firstEdition: false
|
||
},
|
||
|
||
regulationMark: "D"
|
||
}
|
||
|
||
export default card
|