1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00
Florian Bouillon 8ef099273e
fix: Add E-Card French Translations (#166)
* fix: Add E-Card French Translations

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

* fix: Fixed Cards without rarity

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-11-22 19:07:35 +00:00

75 lines
1.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 '../Expedition Base Set'
const card: Card = {
name: {
en: "Feraligatr",
fr: "Aligatueur"
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
160,
],
hp: 120,
types: [
"Water",
],
evolveFrom: {
en: "Croconaw",
},
stage: "Stage2",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Major Tsunami",
fr: "Terrible tsunami"
},
effect: {
en: "Once during your turn (before you attack), if Feraligatr is your Active Pokémon and if your opponent has any Benched Pokémon, your opponent switches his or her Active Pokémon with 1 of his or her Benched Pokémon. Either way, if you have any Benched Pokémon, switch Feraligatr with 1 of them. This power can't be used if Feraligatr is affected by a Special Condition.",
fr: "Une seule fois pendant votre tour (avant votre attaque), si Aligatueur est votre Pokémon Actif et si votre adversaire a des Pokémon sur son Banc, il échange l'un d'eux contre son Pokémon Actif. Quel que soit le cas, si vous avez des Pokémon sur votre Banc, échangez l'un d'eux contre Aligatueur. Ce pouvoir ne peut pas être utilisé si Aligatueur est affecté par un État spécial."
},
},
],
attacks: [
{
cost: [
"Water",
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Rending Jaws",
fr: "Coud'mâchoire"
},
effect: {
en: "If there are no damage counters on the Defending Pokémon, this attack's base damage is 40 instead of 70.",
fr: "S'il n'y a aucun marqueur de dégâts sur le Pokémon Défenseur, cette attaque inflige 40 dégâts de base au lieu de 70."
},
damage: 70
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card