1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-06 21:39:55 +00:00

40 lines
615 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Extradimensional Crisis"
const card: Card = {
set: Set,
name: {
en: "Lillipup"
},
illustrator: "Mizue",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Colorless"],
description: {
en: "This Pokémon is courageous but also cautious.\nIt uses the soft fur covering its face to collect\ninformation about its surroundings."
},
stage: "Basic",
attacks: [{
name: {
en: "Tackle"
},
damage: 20,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 1
}
export default card