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

55 lines
948 B
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 "../SV5s"
const card: Card = {
set: Set,
name: {
id: "Azumarill"
},
illustrator: "Makura Tami",
category: "Pokemon",
hp: 130,
types: ["Psychic"],
description: {
id: "Telinga panjang Azumarill adalah sensor yang luar biasa. Dengan mendengar suara di dalam air, Pokémon ini mengetahui apa yang bergerak di situ."
},
stage: "Stage1",
attacks: [{
name: {
id: "Main Kasar"
},
effect: {
id: "Lempar koin 1 kali. Jika hasilnya sisi depan, kerusakan yang diberikan bertambah sejumlah 30."
},
damage: "30+",
cost: ["Colorless"]
}, {
name: {
id: "Power Tackle"
},
effect: {
id: "Pada giliran sendiri berikutnya, Pokémon ini tidak dapat menggunakan serangan."
},
damage: 140,
cost: ["Psychic", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 2,
regulationMark: "H"
}
export default card