1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon b6fbcc1b77
fix: add EX French translations (#169)
* fix: Add for some sets

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

* Added Sets titles

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

* fix: Finished last EX sets

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

* Change Discord Link text
2021-11-15 16:24:10 +01:00

76 lines
1.7 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 '../Legend Maker'
const card: Card = {
name: {
en: "Banette ex",
fr: "Branette ex"
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
354,
],
hp: 90,
types: [
"Psychic",
],
evolveFrom: {
en: "Shuppet",
},
suffix: "EX",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Shady Move",
fr: "Déplacement louche"
},
effect: {
en: "Once during your turn (before your attack), if Banette ex is your Active Pokémon, you may move 1 damage counter from either player's Pokémon to another Pokémon (yours or your opponent's). This power can't be used if Banette ex is affected by a Special Condition.",
fr: "Une seule fois lors de votre tour (avant votre attaque), si Branette ex est votre Pokémon Actif, vous pouvez déplacer 1 marqueur de dégât d'1 Pokémon de n'importe quel joueur sur 1 autre Pokémon (les vôtres ou ceux de votre adversaire). Ce pouvoir ne peut pas être utilisé si Branette ex est affecté par un État Spécial."
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Shadow Chant",
fr: "Chant d'ombre"
},
effect: {
en: "Does 30 damage plus 10 more damage for each Supporter card in your discard pile. You can't add more than 60 damage in this way.",
fr: "Inflige 30 dégâts plus 10 dégâts supplémentaires pour chaque carte Supporter dans votre pile de défausse. Vous ne pouvez pas ajouter plus de 60 dégâts de cette façon."
},
damage: "30+",
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
}
export default card