1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00

94 lines
2.0 KiB
TypeScript
Raw Permalink 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 '../Aquapolis'
const card: Card = {
name: {
en: "Lugia",
fr: "Lugia",
de: "Lugia"
},
illustrator: "Naoyo Kimura",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
249,
],
hp: 80,
types: [
"Colorless",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Crystal Type",
fr: "Type de cristal",
de: "Kristall-Typ"
},
effect: {
en: "Whenever you attach a Fire, Water, or Psychic basic Energy card from your hand to Lugia, Lugia's type (color) becomes the same as that as that Energy card type until the end of the turn.",
fr: "À chaque fois que vous attachez une carte Énergie de base , , ou de votre main à Lugia, le type de Lugia (sa couleur) devient identique au type de carte Énergie jusqu'à la fin du tour.",
de: "Immer wenn du eine -, - oder -Energiekarte aus deiner Hand an Lugia anlegst, wird Lugias Typ (Farbe) bis zum Ende des Zuges derselbe Typ wie diese Energiekarte."
},
},
],
attacks: [
{
cost: [
"Psychic",
"Fire",
],
name: {
en: "Psychic",
fr: "Psyko",
de: "Psycho"
},
effect: {
en: "This attack does 10 damage times the number of Energy cards attached to the Defending Pokémon.",
fr: "Inflige 10 dégâts multipliés par le nombre de cartes Énergie attachées au Pokémon Défenseur.",
de: "Dieser Angriff fügt 10 Schadenspunkte mal der Anzahl an Energiekarten, die an das Verteidigende Pokémon angelegt sind, zu."
},
damage: "10x",
},
{
cost: [
"Water",
"Water",
"Fire",
"Colorless",
],
name: {
en: "Steam Blast",
fr: "Coud' vapeur",
de: "Dampfstrahl"
},
effect: {
en: "Discard an Energy card attached to Lugia.",
fr: "Défaussez-vous d'une carte Énergie attachée à Lugia.",
de: "Lege 1 an Lugia angelegte Energiekarte auf deinen Ablagestapel."
},
damage: 50,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card