1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-15 06:09:50 +00:00
Files
cards-database/data/Pokémon TCG Pocket/Eevee Grove/021.ts

44 lines
671 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Eevee Grove"
const card: Card = {
set: Set,
name: {
en: "Alomomola"
},
illustrator: "Miki Tanaka",
rarity: "One Diamond",
category: "Pokemon",
hp: 110,
types: ["Water"],
description: {
en: "It gently holds injured and weak Pokémon in its\nfins. Its special membrane heals their wounds."
},
stage: "Basic",
attacks: [{
name: {
en: "Water Pulse"
},
damage: 50,
cost: ["Water", "Colorless", "Colorless"],
effect: {
en: "Your opponent's Active Pokémon is now Asleep."
}
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 2
}
export default card