1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-05 13:09:53 +00:00

36 lines
444 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Genetic Apex"
const card: Card = {
set: Set,
name: {
en: "Petilil"
},
illustrator: "Naoyo Kimura",
category: "Pokemon",
hp: 60,
types: ["Grass"],
stage: "Basic",
attacks: [{
cost: ["Grass"],
name: {
en: "Blot"
},
effect: {
en: "Heal 10 damage from this Pokémon."
},
damage: "10"
}],
retreat: 1,
rarity: "One Diamond"
}
export default card