mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
90 lines
2.3 KiB
TypeScript
90 lines
2.3 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Evolving Skies'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
name: {
|
||
en: "Lanturn",
|
||
fr: "Lanturn",
|
||
es: "Lanturn",
|
||
it: "Lanturn",
|
||
pt: "Lanturn",
|
||
de: "Lanturn"
|
||
},
|
||
|
||
rarity: "Uncommon",
|
||
category: "Pokemon",
|
||
hp: 120,
|
||
types: ["Lightning"],
|
||
stage: "Stage1",
|
||
illustrator: "ryoma uratsuka",
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Blinding Beam",
|
||
fr: "Rayon Éblouissant",
|
||
es: "Rayo Cegador",
|
||
it: "Raggio Accecante",
|
||
pt: "Blinding Beam",
|
||
de: "Blendender Schein"
|
||
},
|
||
|
||
effect: {
|
||
en: "During your opponent's next turn, if the Defending Pokémon tries to attack, your opponent flips a coin. If tails, that attack doesn't happen.",
|
||
fr: "Pendant le prochain tour de votre adversaire, si le Pokémon Défenseur essaie d'attaquer, votre adversaire lance une pièce. Si c'est pile, l'attaque n'est pas lancée.",
|
||
es: "Durante el próximo turno de tu rival, si el Pokémon Defensor intenta atacar, tu rival lanza 1 moneda. Si sale cruz, ese ataque no se hace.",
|
||
it: "Se durante il prossimo turno del tuo avversario il Pokémon difensore prova ad attaccare, il tuo avversario lancia una moneta. Se esce croce, quell'attacco non ha luogo.",
|
||
pt: "During your opponent's next turn, if the Defending Pokémon tries to attack, your opponent flips a coin. If tails, that attack doesn't happen.",
|
||
de: "Wenn das Verteidigende Pokémon während des nächsten Zuges deines Gegners versucht anzugreifen, wirft dein Gegner 1 Münze. Bei Zahl wird jene Attacke nicht ausgeführt."
|
||
},
|
||
|
||
damage: 40,
|
||
cost: ["Lightning", "Colorless"]
|
||
}, {
|
||
name: {
|
||
en: "Electro Ball",
|
||
fr: "Boule Élek",
|
||
es: "Bola Voltio",
|
||
it: "Energisfera",
|
||
pt: "Electro Ball",
|
||
de: "Elektroball"
|
||
},
|
||
|
||
damage: 120,
|
||
cost: ["Lightning", "Lightning", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Fighting",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 2,
|
||
|
||
evolveFrom: {
|
||
en: "Chinchou",
|
||
fr: "Loupio",
|
||
es: "Chinchou",
|
||
it: "Chinchou",
|
||
pt: "Chinchou",
|
||
de: "Lampi"
|
||
},
|
||
|
||
description: {
|
||
en: "This Pokémon flashes a bright light that blinds its prey. This creates an opening for it to deliver an electrical attack."
|
||
},
|
||
|
||
dexId: [171],
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card
|