mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-12 15:59:18 +00:00
86
data/Sword & Shield/Fusion Strike/66.ts
Normal file
86
data/Sword & Shield/Fusion Strike/66.ts
Normal file
@ -0,0 +1,86 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Fusion Strike"
|
||||
|
||||
const card: Card = {
|
||||
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
|
Reference in New Issue
Block a user