mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-17 13:59:55 +00:00
45 lines
703 B
TypeScript
45 lines
703 B
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Space-Time Smackdown"
|
|
|
|
const card: Card = {
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Starly"
|
|
},
|
|
|
|
illustrator: "Atsuko Nishida",
|
|
rarity: "One Diamond",
|
|
category: "Pokemon",
|
|
hp: 50,
|
|
types: ["Colorless"],
|
|
|
|
description: {
|
|
en: "They flock around mountains and fields, chasing after bug Pokémon. Their singing is noisy and annoying."
|
|
},
|
|
|
|
stage: "Basic",
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Pluck"
|
|
},
|
|
|
|
damage: 20,
|
|
cost: ["Colorless"],
|
|
|
|
effect: {
|
|
en: "Before doing damage, discard all Pokémon Tools from your opponent's Active Pokémon."
|
|
}
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: "Lightning",
|
|
value: "+20"
|
|
}],
|
|
|
|
retreat: 1
|
|
}
|
|
|
|
export default card
|