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

94 lines
1.5 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

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: "Lugia",
fr: "Lugia",
es: "Lugia",
it: "Lugia",
pt: "Lugia",
de: "Lugia"
},
illustrator: "Hasuno",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 130,
types: [
"Colorless",
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Gust",
fr: "Tornade",
es: "Tornado",
it: "Raffica",
pt: "Lufada de Vento",
de: "Windstoß"
},
damage: 30,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Energy Loop",
fr: "Boucle dÉnergie",
es: "Bucle de Energía",
it: "Circuito Energetico",
pt: "Loop de Energia",
de: "Energieschleife"
},
effect: {
en: "Put an Energy attached to this Pokémon into your hand.",
fr: "Ajoutez à votre main une Énergie attachée à ce Pokémon.",
es: "Pon 1 Energía unida a este Pokémon en tu mano.",
it: "Prendi unEnergia assegnata a questo Pokémon e aggiungila alle carte che hai in mano.",
pt: "Coloque 1 Energia ligada a este Pokémon na sua mão.",
de: "Nimm 1 an dieses Pokémon angelegte Energie auf deine Hand."
},
damage: 120,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
retreat: 2,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card