1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-04 05:11:58 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Wisdom of Sea and Sky/050.ts

56 lines
831 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 "../Wisdom of Sea and Sky"
const card: Card = {
set: Set,
name: {
en: "Azumarill"
},
illustrator: "Naoyo Kimura",
rarity: "Two Diamond",
category: "Pokemon",
hp: 110,
types: ["Water"],
evolveFrom: {
en: "Marill"
},
description: {
en: "Its long ears are superb sensors. It can distinguish\nthe movements of things in water and tell what\nthey are."
},
stage: "Stage1",
abilities: [{
type: "Ability",
name: {
en: "Thick Fat"
},
effect: {
en: "This Pokémon takes 30 damage from attacks from {R} or {W} Pokémon."
}
}],
attacks: [{
name: {
en: "Tail Smack"
},
damage: 60,
cost: ["Water", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 2
}
export default card