mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-30 14:52:09 +00:00
67 lines
1.3 KiB
TypeScript
67 lines
1.3 KiB
TypeScript
import { Card } from "../../../interfaces"
|
|
import Set from "../Brilliant Stars"
|
|
|
|
const card: Card = {
|
|
dexId: [404],
|
|
set: Set,
|
|
|
|
name: {
|
|
en: "Luxio",
|
|
fr: "Luxio",
|
|
es: "Luxio",
|
|
it: "Luxio",
|
|
pt: "Luxio",
|
|
de: "Luxio"
|
|
},
|
|
|
|
rarity: "Uncommon",
|
|
category: "Pokemon",
|
|
hp: 90,
|
|
types: ["Lightning"],
|
|
|
|
evolveFrom: {
|
|
en: "Shinx",
|
|
fr: "Lixy",
|
|
es: "Shinx",
|
|
it: "Shinx",
|
|
pt: "Shinx",
|
|
de: "Sheinux"
|
|
},
|
|
|
|
stage: "Stage1",
|
|
|
|
attacks: [{
|
|
cost: ["Lightning"],
|
|
|
|
name: {
|
|
en: "Thunder Shock",
|
|
fr: "Éclair",
|
|
es: "Impactrueno",
|
|
it: "Tuonoshock",
|
|
pt: "Trovoada de Choques",
|
|
de: "Donnerschock"
|
|
},
|
|
|
|
effect: {
|
|
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.",
|
|
fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
|
|
es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Paralizado.",
|
|
it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene paralizzato.",
|
|
pt: "Jogue 1 moeda. Se sair cara, o Pokémon Ativo do seu oponente ficará Paralisado.",
|
|
de: "Wirf 1 Münze. Bei Kopf ist das Aktive Pokémon deines Gegners jetzt paralysiert."
|
|
},
|
|
|
|
damage: 30
|
|
}],
|
|
|
|
retreat: 1,
|
|
regulationMark: "F",
|
|
variants: {
|
|
normal: true,
|
|
reverse: true,
|
|
holo: false,
|
|
firstEdition: false
|
|
}
|
|
}
|
|
|
|
export default card |