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/022.ts

40 lines
566 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Eevee Grove"
const card: Card = {
set: Set,
name: {
en: "Popplio"
},
illustrator: "match",
rarity: "One Diamond",
category: "Pokemon",
hp: 70,
types: ["Water"],
description: {
en: "The balloons it inflates with its nose grow\nlarger and larger as it practices day by day."
},
stage: "Basic",
attacks: [{
name: {
en: "Watering"
},
damage: 30,
cost: ["Water", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 1
}
export default card