1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 15:42:11 +00:00
Florian Bouillon d4be6fa84f
fix: Add Diamond & Pearl French translations (#179)
* fix: Add the two first sets

Signed-off-by: Avior <github@avior.me>

* fix: Add DP, DP Black Star and Mysterious Treasures

Signed-off-by: Avior <github@avior.me>
2021-11-22 18:11:03 +00:00

80 lines
1.6 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 '../Mysterious Treasures'
const card: Card = {
name: {
en: "Feraligatr",
fr: "Aligatueur"
},
illustrator: "Kazuyuki Kano",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
160,
],
hp: 130,
types: [
"Water",
],
evolveFrom: {
en: "Croconaw",
},
stage: "Stage2",
attacks: [
{
cost: [
"Water",
"Water",
],
name: {
en: "Energy Cyclone",
fr: "Énergie Tourbillon"
},
effect: {
en: "Choose as many Energy cards from your hand as you like and show them to your opponent. This attack does 20 damage times the number of Energy cards you chose. Put those Energy cards on top of your deck. Shuffle your deck afterward.",
fr: "Choisissez autant de cartes Énergie de votre main que vous voulez et montrez-les à votre adversaire. Cette attaque inflige 20 dégâts multipliés par le nombre de cartes Énergie choisies. Placez ces cartes au dessus de votre deck. Ensuite, mélangez votre deck."
},
damage: "20×",
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Breaking Tail",
fr: "Queue brisante"
},
effect: {
en: "Choose 1 card from your opponent's hand without looking and discard it.",
fr: "Choisissez sans regarder 1 carte de la main de votre adversaire et défaussez-la."
},
damage: 60,
},
],
weaknesses: [
{
type: "Lightning",
value: "+30"
},
],
description: {
fr: "Ce Pokémon à l'air pataud est capable d'attaquer à la vitesse de l'éclair pour mordre sa proie."
}
}
export default card