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

103 lines
2.8 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 '../Phantom Forces'
const card: Card = {
name: {
en: "Feraligatr",
fr: "Aligatueur",
es: "Feraligatr",
it: "Feraligatr",
pt: "Feraligatr",
de: "Impergator"
},
illustrator: "Shin Nagasawa",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
160,
],
hp: 150,
types: [
"Water",
],
evolveFrom: {
en: "Croconaw",
fr: "Crocrodil",
es: "Croconaw",
it: "Croconaw",
pt: "Croconaw",
de: "Tyracroc"
},
stage: "Stage2",
attacks: [
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Hyper Whirlpool",
fr: "Hyper Tourbillon",
es: "Hipertorbellino",
it: "Ipermulinello",
pt: "Hiper Redemoinho",
de: "Hyper Whirlpool"
},
effect: {
en: "Flip a coin until you get tails. For each heads, discard an Energy attached to your opponent's Active Pokémon.",
fr: "Lancez une pièce jusqu'à ce que vous obteniez un côté pile. Pour chaque côté face, défaussez une Énergie attachée au Pokémon Actif de votre adversaire.",
es: "Lanza 1 moneda hasta que salga cruz. Por cada cara, descarta 1 Energía unida al Pokémon Activo de tu rival.",
it: "Lancia una moneta finché non esce croce. Ogni volta che esce testa, scarta un'Energia assegnata al Pokémon attivo del tuo avversario.",
pt: "Jogue uma moeda até sair coroa. Para cada cara, descarte uma Energia ligada ao Pokémon Ativo do seu oponente.",
de: "Wirf so lang 1 Münze, bis zum ersten Mal das Ergebnis \"Zahl\" kommt. Lege pro \"Kopf\" 1 an das Aktive Pokémon deines Gegners angelegte Energie auf den Ablagestapel deines Gegners."
},
damage: 60,
},
{
cost: [
"Water",
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Second Strike",
fr: "Deuxième Coup",
es: "Segundo Golpe",
it: "Secondocolpo",
pt: "Segundo Golpe",
de: "Sekundärschlag"
},
effect: {
en: "If your opponent's Active Pokémon already has any damage counters on it, this attack does 80 more damage.",
fr: "Si le Pokémon Actif de votre adversaire a déjà des marqueurs de dégâts, cette attaque inflige 80 dégâts supplémentaires.",
es: "Si el Pokémon Activo de tu rival ya tiene algún contador de daño sobre él, este ataque hace 80 puntos de daño más.",
it: "Se il Pokémon attivo del tuo avversario ha dei segnalini danno, questo attacco infligge 80 danni in più.",
pt: "Se o Pokémon Ativo do seu oponente já possuir contadores de danos, esse ataque causará 80 de danos adicionais.",
de: "Wenn auf dem Aktiven Pokémon deines Gegners bereits mindestens 1 Schadensmarke liegt, fügt dieser Angriff 80 weitere Schadenspunkte zu."
},
damage: "80+",
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
}
export default card