1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-11 15:45:14 +00:00
Files
cards-database/data/Sword & Shield/Evolving Skies/78.ts

52 lines
703 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Evolving Skies'
const card: Card = {
set: Set,
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
name: {
en: "Cutiefly",
fr: "Bombydou",
es: "Cutiefly",
it: "Cutiefly",
pt: "Cutiefly",
de: "Wommel"
},
rarity: "Common",
category: "Pokemon",
hp: 30,
types: ["Psychic"],
stage: "Basic",
illustrator: "Yukiko Baba",
attacks: [{
name: {
en: "Flap",
fr: "Battement",
es: "Aleteo",
it: "Alabattito",
pt: "Flap",
de: "Flattern"
},
damage: 10,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Metal",
value: "×2"
}],
retreat: 0
}
export default card