1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 13:22:15 +00:00

73 lines
1.3 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 '../Primal Clash'
const card: Card = {
name: {
en: "Milotic",
fr: "Milobellus",
},
illustrator: "Sanosuke Sakuma",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
350,
],
hp: 110,
types: [
"Water",
],
evolveFrom: {
en: "Feebas",
fr: "Barpau",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Sparkling Ripples",
fr: "Ondes Étincelantes",
},
effect: {
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon, you may put a card from your discard pile into your hand.",
fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer l'un de vos Pokémon, vous pouvez ajouter une carte de votre pile de défausse à votre main.",
},
},
],
attacks: [
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Aqua Swirl",
fr: "Tourbillon Aquatique",
},
effect: {
en: "You may have your opponent switch his or her Active Pokémon with 1 of his or her Benched Pokémon.",
fr: "Vous pouvez demander à votre adversaire d'échanger son Pokémon Actif avec l'un de ses Pokémon de Banc.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
}
export default card