1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

98 lines
3.0 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 '../Celestial Storm'
const card: Card = {
name: {
en: "Lanturn",
fr: "Lanturn",
es: "Lanturn",
it: "Lanturn",
pt: "Lanturn",
de: "Lanturn"
},
illustrator: "Aya Kusube",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
171,
],
hp: 110,
types: [
"Lightning",
],
evolveFrom: {
en: "Chinchou",
fr: "Loupio",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Energy Grounding",
fr: "Source dÉnergie",
es: "Conexión Energía Tierra",
it: "Messa a Terra",
pt: "Energia Aterrada",
de: "Energieerdung"
},
effect: {
en: "When 1 of your Pokémon is Knocked Out by damage from an opponents attack, you may move a basic Energy card from that Pokémon to this Pokémon.",
fr: "Lorsque lun de vos Pokémon est mis K.O. par les dégâts dune attaque de votre adversaire, vous pouvez déplacer une carte Énergie de base du Pokémon mis K.O. vers celui-ci.",
es: "Cuando 1 de tus Pokémon queda Fuera de Combate por el daño de un ataque de tu rival, puedes mover 1 carta de Energía Básica de ese Pokémon a este Pokémon.",
it: "Quando uno dei tuoi Pokémon viene messo KO dai danni inflitti da un attacco del tuo avversario, puoi spostare una carta Energia base da quel Pokémon a questo Pokémon.",
pt: "Quando 1 dos seus Pokémon é Nocauteado pelo dano de um ataque do seu oponente, você pode mover 1 carta de Energia básica daquele Pokémon para este Pokémon.",
de: "Wenn 1 deiner Pokémon durch den Schaden einer Attacke deines Gegners kampfunfähig wird, kannst du 1 Basis-Energiekarte von jenem Pokémon auf dieses Pokémon verschieben."
},
},
],
attacks: [
{
cost: [
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Lightning Strike",
fr: "FrapÉclair",
es: "Ataque Fulgor",
it: "Fulminstocco",
pt: "Ataque de Raios",
de: "Blitzschlag"
},
effect: {
en: "You may discard all Lightning Energy from this Pokémon. If you do, this attack does 70 more damage.",
fr: "Vous pouvez défausser toute lÉnergie Lightning attachée à ce Pokémon. Dans ce cas, cette attaque inflige 70 dégâts supplémentaires.",
es: "Puedes descartar todas las Energías Lightning de este Pokémon. Si lo haces, este ataque hace 70 puntos de daño más.",
it: "Puoi scartare tutte le Energie Lightning assegnate a questo Pokémon. Se lo fai, questo attacco infligge 70 danni in più.",
pt: "Você pode descartar todas as Energias Lightning deste Pokémon. Se fizer isto, este ataque causará 70 pontos de dano a mais.",
de: "Du kannst alle Lightning-Energien von diesem Pokémon auf deinen Ablagestapel legen. Wenn du das machst, fügt diese Attacke 70 Schadenspunkte mehr zu."
},
damage: "70+",
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 2,
}
export default card