1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-27 18:39:54 +00:00

40 lines
591 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Celestial Guardians"
const card: Card = {
set: Set,
name: {
en: "Cutiefly"
},
illustrator: "Hitoshi Ariga",
rarity: "One Diamond",
category: "Pokemon",
hp: 30,
types: ["Psychic"],
description: {
en: "Nectar and pollen are its favorite fare. In fields of flowers, it gets into skirmishes with Butterfree over food."
},
stage: "Basic",
attacks: [{
name: {
en: "Flap"
},
damage: 10,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "+20"
}],
retreat: 0
}
export default card