1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

92 lines
1.5 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 '../Shining Legends'
const card: Card = {
name: {
en: "Feraligatr",
fr: "Aligatueur",
es: "Feraligatr",
it: "Feraligatr",
pt: "Feraligatr",
de: "Impergator"
},
illustrator: "nagimiso",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
160,
],
hp: 160,
types: [
"Water",
],
evolveFrom: {
en: "Croconaw",
fr: "Crocrodil",
},
stage: "Stage2",
attacks: [
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Crunch",
fr: "Mâchouille",
es: "Triturar",
it: "Sgranocchio",
pt: "Mastigada",
de: "Knirscher"
},
effect: {
en: "Discard an Energy from your opponents Active Pokémon.",
fr: "Défaussez une Énergie du Pokémon Actif de votre adversaire.",
es: "Descarta 1 Energía del Pokémon Activo de tu rival.",
it: "Scarta unEnergia assegnata al Pokémon attivo del tuo avversario.",
pt: "Descarte 1 Energia do Pokémon Ativo do seu oponente.",
de: "Lege 1 Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel."
},
damage: 80,
},
{
cost: [
"Water",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Hydro Splash",
fr: "Hydro-Éclaboussure",
es: "Hidroestallido",
it: "Idrosplash",
pt: "Hidroborrifada",
de: "Hydroplatscher"
},
damage: 130,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
}
export default card