mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-08 10:17:50 +00:00
82 lines
1.2 KiB
TypeScript
82 lines
1.2 KiB
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Majestic Dawn'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Staravia",
|
|
fr: "Étourvol",
|
|
de: "Staravia"
|
|
},
|
|
illustrator: "Kent Kanetsuna",
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
397,
|
|
],
|
|
hp: 80,
|
|
types: [
|
|
"Colorless",
|
|
],
|
|
evolveFrom: {
|
|
en: "Starly",
|
|
fr: "Étourmi",
|
|
},
|
|
stage: "Stage1",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Quick Attack",
|
|
fr: "Vive-attaque",
|
|
de: "Ruckzuckhieb"
|
|
},
|
|
effect: {
|
|
en: "Flip a coin. If heads, this attack does 10 damage plus 30 more damage.",
|
|
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts plus 30 dégâts supplémentaires.",
|
|
de: "Wirf 1 Münze. Bei 'Kopf' fügt dieser Angriff 10 Schadenspunkte plus 30 weitere Schadenspunkte zu."
|
|
},
|
|
damage: "10+",
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Colorless",
|
|
"Colorless",
|
|
"Colorless",
|
|
],
|
|
name: {
|
|
en: "Drill Peck",
|
|
fr: "Bec vrille",
|
|
de: "Bohrschnabel"
|
|
},
|
|
|
|
damage: 50,
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Lightning",
|
|
value: "+20"
|
|
},
|
|
],
|
|
resistances: [
|
|
{
|
|
type: "Fighting",
|
|
value: "-20"
|
|
},
|
|
],
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|