1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

56 lines
1.0 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 "../SV4s"
const card: Card = {
set: Set,
name: {
id: "Milotic"
},
illustrator: "Atsuya Uki",
category: "Pokemon",
hp: 120,
types: ["Water"],
description: {
id: "Kabarnya orang yang melihat wujud Milotic yang cantik akan tersembuhkan luka batinnya."
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
id: "Memberi Pertolongan"
},
effect: {
id: "Dapat digunakan 1 kali pada giliran sendiri saat memasukkan kartu ini dari Kartu Pegangan untuk melakukan evolusi. Kedua pemain masing-masing memilih 1 lembar Pokémon Basic dari Trash sendiri, lalu memasukkannya ke Cadangan sendiri. (Lawan memasukkan ke Cadangan terlebih dahulu.)"
}
}],
attacks: [{
name: {
id: "Hypnosplash"
},
effect: {
id: "Ubah kondisi Pokémon Bertarung lawan menjadi Tidur."
},
damage: 60,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
retreat: 2,
regulationMark: "G"
}
export default card