mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-04 05:11:58 +00:00
56 lines
831 B
TypeScript
56 lines
831 B
TypeScript
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 |