mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 00:29:19 +00:00
@ -5,22 +5,24 @@ const card: Card = {
|
||||
name: {
|
||||
en: "Starly",
|
||||
},
|
||||
|
||||
illustrator: "Masakazu Fukuda",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
396,
|
||||
],
|
||||
|
||||
hp: 50,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -44,16 +46,18 @@ const card: Card = {
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage.",
|
||||
},
|
||||
damage: 10,
|
||||
damage: "10+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "+10"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@ -61,9 +65,18 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
description: {
|
||||
en: "They flock in great numbers. Though small, they flap their wings with great power."
|
||||
},
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: false,
|
||||
firstEdition: false
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user