1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +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

86 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 '../Hidden Legends'
const card: Card = {
name: {
en: "Milotic",
fr: "Milobellus"
},
illustrator: "Atsuko Nishida",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
350,
],
hp: 100,
types: [
"Water",
],
evolveFrom: {
en: "Feebas",
},
stage: "Stage1",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Healing Shower",
fr: "Douche guérisseuse"
},
effect: {
en: "Once during your turn, when you play Milotic from your hand to evolve 1 of your Pokémon, you may remove all damage counters from all of your Pokémon and your opponent's Pokémon (excluding Pokémon-ex).",
fr: "Une seule fois lors de votre tour, lorsque vous jouez Milobellus de votre main pour faire évoluer 1 de vos Pokémon, vous pouvez retirer à vos Pokémon et à ceux de votre adversaire tous leurs marqueurs de dégât (Pokémon-ex exclus)."
},
},
],
attacks: [
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Wave Splash",
fr: "Grosse vague"
},
damage: 30,
},
{
cost: [
"Water",
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Distorted Wave",
fr: "Vague tordue"
},
effect: {
en: "Before doing damage, remove 3 damage counters from the Defending Pokémon (all if there are less than 3).",
fr: "Avant d'infliger des dégâts, retirez au Pokémon Défenseur 3 marqueurs de dégât (retirez-les lui tous s'il en possède moins de 3)."
},
damage: 80,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card