1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-02 04:19:53 +00:00

87 lines
1.7 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 '../SWSH Black Star Promos'
const card: Card = {
set: Set,
name: {
en: "Lugia",
fr: "Lugia",
es: "Lugia",
it: "Lugia",
pt: "Lugia",
de: "Lugia"
},
illustrator: "kodama",
rarity: "None",
category: "Pokemon",
hp: 130,
types: ["Colorless"],
attacks: [{
name: {
en: "Gust",
fr: "Tornade",
es: "Tornado",
it: "Raffica",
pt: "Lufada de Vento",
de: "Windstoß"
},
damage: 40,
cost: ["Colorless", "Colorless"]
}, {
name: {
en: "Wind Pressure",
fr: "Pression Éolienne",
es: "Presión Eólica",
it: "Pressione Ventosa",
pt: "Pressão do Vento",
de: "Winddruck"
},
effect: {
en: "If your opponent has 5 or fewer cards in their hand, this attack does nothing.",
fr: "Si votre adversaire a 5 cartes ou moins dans sa main, cette attaque ne fait rien.",
es: "Si tu rival tiene 5 o menos cartas en su mano, este ataque no hace nada.",
it: "Se il tuo avversario ha cinque o meno carte in mano, questo attacco non ha effetto.",
pt: "Se o seu oponente tiver 5 ou menos cartas na própria mão, este ataque não fará nada.",
de: "Wenn dein Gegner 5 oder weniger Karten auf seiner Hand hat, hat diese Attacke keine Auswirkungen."
},
damage: 250,
cost: ["Colorless", "Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Lightning",
value: "×2"
}],
resistances: [{
type: "Fighting",
value: "-30"
}],
retreat: 2,
description: {
en: "It is said to be the guardian of the seas. It is rumored to have been seen on the night of a storm."
},
stage: "Basic",
dexId: [249],
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
},
regulationMark: "D"
}
export default card