1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

95 lines
2.3 KiB
TypeScript
Raw Permalink 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 '../Unseen Forces'
const card: Card = {
name: {
en: "Feraligatr",
fr: "Aligatueur",
de: "Impergator"
},
illustrator: "Masakazu Fukuda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
160,
],
hp: 120,
types: [
"Water",
],
evolveFrom: {
en: "Croconaw",
},
stage: "Stage2",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Intimidating Fang",
fr: "Croc intimidant",
de: "Intimidating Fang"
},
effect: {
en: "As long as Feraligatr is your Active Pokémon, any damage done to your Pokémon by an opponent's attack is reduced by 10 (before applying Weakness and Resistance).",
fr: "Tant qu'Aligatueur est votre Pokémon Actif, les dégâts infligés à votre Pokémon par une attaque de votre adversaire sont réduits de 10 (avant application de la Faiblesse et de la Résistance).",
de: "As long as Feraligatr is your Active Pokémon, any damage done by an opponent's attack is reduced by 10 (before applying Weakness and Resistance)."
},
},
],
attacks: [
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Pull Away",
fr: "Arracher",
de: "Pull Away"
},
effect: {
en: "If your opponent has 5 or more cards in his or her hand, your opponent discards a number of cards until your opponent has 4 cards left in his or her hand.",
fr: "Si votre adversaire a au moins 5 cartes en main, il ou elle doit défausser des cartes jusqu'à ce qu'il ou elle n'ait plus que 4 cartes en main.",
de: "If your opponent has 5 or more cards in his or her hand, your opponent discards a number of cards until your opponent has 4 cards left in his or her hand."
},
damage: 30,
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Tonnage",
fr: "Surpuissance",
de: "Tonnage"
},
effect: {
en: "You may do 50 damage plus 30 more damage. If you do, Feraligatr does 30 damage to itself.",
fr: "Vous pouvez infliger 50 dégâts plus 30 dégâts supplémentaires. Aligatueur s'inflige alors 30 dégâts.",
de: "You may do 50 damage plus 30 more damage. If you do, Feraligatr does 30 damage to itself."
},
damage: "50+",
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card