1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 10:59:54 +00:00

75 lines
1.1 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 '../Dragons Exalted'
const card: Card = {
name: {
en: "Milotic",
fr: "Milobellus",
},
illustrator: "Mizue",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
350,
],
hp: 110,
types: [
"Water",
],
evolveFrom: {
en: "Feebas",
fr: "Barpau",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Clear Search",
fr: "Recherche Libre",
},
effect: {
en: "Search your deck for any 3 cards and put them into your hand. Shuffle your deck afterward.",
fr: "Cherchez 3 cartes dans votre deck puis ajoutez-les à votre main. Mélangez ensuite votre deck.",
},
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Water Pulse",
fr: "Vibraqua",
},
effect: {
en: "The Defending Pokémon is now Asleep.",
fr: "Le Pokémon Défenseur est maintenant Endormi.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 1,
}
export default card