1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 19:09:54 +00:00

40 lines
586 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Triumphant Light"
const card: Card = {
set: Set,
name: {
en: "Starly"
},
illustrator: "Apios",
rarity: "One Diamond",
category: "Pokemon",
hp: 60,
types: ["Colorless"],
description: {
en: "They flock around mountains and fields, chasing<br />after bug Pokémon. Their singing is noisy and<br />annoying."
},
stage: "Basic",
attacks: [{
name: {
en: "Glide"
},
damage: 20,
cost: ["Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "+20"
}],
retreat: 1
}
export default card