mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-26 21:02:15 +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
108 lines
1.8 KiB
TypeScript
108 lines
1.8 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Darkness Ablaze'
|
||
|
||
const card: Card = {
|
||
name: {
|
||
en: "Staravia",
|
||
fr: "Étourvol",
|
||
es: "Staravia",
|
||
it: "Staravia",
|
||
pt: "Staravia",
|
||
de: "Staravia"
|
||
},
|
||
|
||
illustrator: "chibi",
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
hp: 80,
|
||
|
||
types: [
|
||
"Colorless",
|
||
],
|
||
|
||
evolveFrom: {
|
||
en: "Starly",
|
||
fr: "Étourmi",
|
||
es: "Starly",
|
||
it: "Starly",
|
||
pt: "Starly",
|
||
de: "Staralili"
|
||
},
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Ambush",
|
||
fr: "Embuscade",
|
||
es: "Emboscada",
|
||
it: "Imboscata",
|
||
pt: "Emboscada",
|
||
de: "Hinterhalt"
|
||
},
|
||
effect: {
|
||
en: "Flip a coin. If heads, this attack does 20 more damage.",
|
||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires.",
|
||
es: "Lanza 1 moneda. Si sale cara, este ataque hace 20 puntos de daño más.",
|
||
it: "Lancia una moneta. Se esce testa, questo attacco infligge 20 danni in più.",
|
||
pt: "Jogue 1 moeda. Se sair cara, este ataque causará 20 pontos de dano a mais.",
|
||
de: "Wirf 1 Münze. Bei Kopf fügt diese Attacke 20 Schadenspunkte mehr zu."
|
||
},
|
||
damage: "20+",
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Wing Attack",
|
||
fr: "Cru-Ailes",
|
||
es: "Ataque Ala",
|
||
it: "Attacco d'Ala",
|
||
pt: "Ataque de Asa",
|
||
de: "Flügelschlag"
|
||
},
|
||
|
||
damage: 40,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
},
|
||
],
|
||
|
||
retreat: 1,
|
||
regulationMark: "D",
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Stage1",
|
||
|
||
description: {
|
||
en: "It lives in forests and fields. Squabbles over territory occur when flocks collide."
|
||
}
|
||
}
|
||
|
||
export default card
|