mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
60 lines
907 B
TypeScript
60 lines
907 B
TypeScript
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,
|
||
|
||
description: {
|
||
en: "An opponent's aura can tell Cutiefly what that opponent's next move will be. Then Cutiefly can glide around the attack and strike back."
|
||
},
|
||
|
||
dexId: [742],
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card
|