1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-16 05:29:55 +00:00
Florian Bouillon 9138eedb16
Add swsh variants (#42)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Added the rest of the SWSH variants

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:34:21 +00:00

106 lines
2.2 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Darkness Ablaze'
const card: Card = {
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"
},
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 dalluno allaltro 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 sinflige 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
}
}
export default card