1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

87 lines
1.7 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from "../../../interfaces"
import Set from "../Fusion Strike"
const card: Card = {
dexId: [367],
set: Set,
name: {
en: "Huntail",
fr: "Serpang",
es: "Huntail",
it: "Huntail",
pt: "Huntail",
de: "Aalabyss"
},
rarity: "Rare",
category: "Pokemon",
hp: 110,
types: ["Water"],
evolveFrom: {
en: "Clamperl",
fr: "Coquiperl",
es: "Clamperl",
it: "Clamperl",
pt: "Clamperl",
de: "Perlu"
},
stage: "Stage1",
retreat: 1,
regulationMark: "E",
illustrator: "otumami",
description: {
en: "Deep seas are their habitat. According to tradition, when Huntail wash up onshore, something unfortunate will happen."
},
abilities: [{
type: "Ability",
name: {
en: "Single Strike Jammer",
fr: "Bloqueur de Poing Final",
es: "Inhibidor de Golpe Brusco",
it: "Blocco Colpo Singolo",
de: "Fokussierter-Angriff-Störer"
},
effect: {
en: "Your opponent's Single Strike Pokémon's attacks cost Colorless more.",
fr: "Les attaques des Pokémon Poing Final de votre adversaire coûtent Colorless de plus.",
es: "Los ataques de los Pokémon Golpe Brusco de tu rival cuestan Colorless más.",
it: "Il costo degli attacchi dei Pokémon Colpo Singolo del tuo avversario aumenta di Colorless.",
de: "Die Kosten der Attacken der Fokussierter-Angriff-Pokémon deines Gegners erhöhen sich um Colorless."
}
}],
attacks: [{
cost: ["Water", "Colorless", "Colorless"],
name: {
en: "Cavernous Chomp",
fr: "Mâchoire Caverneuse",
es: "Mordisco Cavernoso",
it: "Mandibola Cavernosa",
de: "Riesiger Biss"
},
damage: 80
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card