1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 05: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

76 lines
1.4 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 '../Ultra Prism'
const card: Card = {
name: {
en: "Luxio",
fr: "Luxio",
es: "Luxio",
it: "Luxio",
pt: "Luxio",
de: "Luxio"
},
illustrator: "tetsuya koizumi",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
404,
],
hp: 80,
types: [
"Lightning",
],
evolveFrom: {
en: "Shinx",
fr: "Lixy",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Disconnect",
fr: "Déconnexion",
es: "Desconectar",
it: "Disconnessione",
pt: "Desconexão",
de: "Unterbrechen"
},
effect: {
en: "Your opponent cant play any Item cards from their hand during their next turn.",
fr: "Votre adversaire ne peut pas jouer de carte Objet de sa main pendant son prochain tour.",
es: "Tu rival no puede jugar ninguna carta de Objeto de su mano durante su próximo turno.",
it: "Il tuo avversario non può giocare le carte Strumento che ha in mano durante il suo prossimo turno.",
pt: "Seu oponente não poderá jogar nenhuma carta de Item da própria mão durante a próxima vez dele(a) jogar.",
de: "Dein Gegner kann während seines nächsten Zuges keine Itemkarten aus seiner Hand spielen."
},
damage: 30,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 1,
}
export default card