mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-07 09:47:51 +00:00
117 lines
2.5 KiB
TypeScript
117 lines
2.5 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Darkness Ablaze'
|
||
|
||
const card: Card = {
|
||
dexId: [398],
|
||
name: {
|
||
en: "Staraptor",
|
||
fr: "Étouraptor",
|
||
es: "Staraptor",
|
||
it: "Staraptor",
|
||
pt: "Staraptor",
|
||
de: "Staraptor"
|
||
},
|
||
|
||
illustrator: "AKIRA EGAWA",
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
set: Set,
|
||
hp: 150,
|
||
|
||
types: [
|
||
"Colorless",
|
||
],
|
||
|
||
evolveFrom: {
|
||
en: "Staravia",
|
||
fr: "Étourvol",
|
||
es: "Staravia",
|
||
it: "Staravia",
|
||
pt: "Staravia",
|
||
de: "Staravia"
|
||
},
|
||
|
||
attacks: [
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Hurricane Blender",
|
||
fr: "Ouragan Mixant",
|
||
es: "Batidora Huracán",
|
||
it: "Tifone Caotico",
|
||
pt: "Furacão Desordenado",
|
||
de: "Sturmmixer"
|
||
},
|
||
effect: {
|
||
en: "Move any amount of Energy from your Pokémon to your other Pokémon in any way you like.",
|
||
fr: "Déplacez autant de cartes Énergie attachées à vos Pokémon que vous le voulez vers vos autres Pokémon, comme il vous plaît.",
|
||
es: "Mueve cualquier cantidad de Energías de tus Pokémon a tus otros Pokémon de la manera que desees.",
|
||
it: "Sposta un numero qualsiasi di Energie dall'uno all'altro dei tuoi Pokémon nel modo che preferisci.",
|
||
pt: "Mova qualquer quantidade de Energia dos seus Pokémon para outros Pokémon seus como desejar.",
|
||
de: "Verschiebe beliebig viele Energien von deinen Pokémon beliebig auf deine anderen Pokémon."
|
||
},
|
||
damage: 70,
|
||
|
||
},
|
||
{
|
||
cost: [
|
||
"Colorless",
|
||
"Colorless",
|
||
"Colorless",
|
||
],
|
||
name: {
|
||
en: "Brave Bird",
|
||
fr: "Rapace",
|
||
es: "Pájaro Osado",
|
||
it: "Baldeali",
|
||
pt: "Pássaro Bravo",
|
||
de: "Sturzflug"
|
||
},
|
||
effect: {
|
||
en: "This Pokémon also does 30 damage to itself.",
|
||
fr: "Ce Pokémon s'inflige aussi 30 dégâts.",
|
||
es: "Este Pokémon también se hace 30 puntos de daño a sí mismo.",
|
||
it: "Questo Pokémon infligge anche 30 danni a se stesso.",
|
||
pt: "Este Pokémon também causa 30 pontos de dano a si mesmo.",
|
||
de: "Dieses Pokémon fügt auch sich selbst 30 Schadenspunkte zu."
|
||
},
|
||
damage: 170,
|
||
|
||
},
|
||
],
|
||
|
||
weaknesses: [
|
||
{
|
||
type: "Lightning",
|
||
value: "×2"
|
||
},
|
||
],
|
||
|
||
resistances: [
|
||
{
|
||
type: "Fighting",
|
||
value: "-30"
|
||
},
|
||
],
|
||
|
||
regulationMark: "D",
|
||
retreat: 0,
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
stage: "Stage2",
|
||
|
||
description: {
|
||
en: "When Staravia evolve into Staraptor, they leave the flock to live alone. They have sturdy wings."
|
||
}
|
||
}
|
||
|
||
export default card
|