1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 11:52:16 +00:00
Florian Bouillon afd3a664ae
Fixed most POP sets (#99)
Signed-off-by: Avior <github@avior.me>
2021-10-26 17:23:45 +02:00

89 lines
1.1 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../POP Series 8'
const card: Card = {
name: {
en: "Luxio",
},
illustrator: "Kagemaru Himeno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
404,
],
hp: 80,
types: [
"Lightning",
],
evolveFrom: {
en: "Shinx",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Fasten Claws",
},
effect: {
en: "Flip a coin. If heads, this attack does 10 damage plus 30 more damage.",
},
damage: "10+",
},
{
cost: [
"Lightning",
"Lightning",
],
name: {
en: "Thunder Fang",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fighting",
value: "+20"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
description: {
en: "Its claws loose electricity with enough amperage to cause fainting. They live in small groups."
},
retreat: 0,
variants: {
normal: true,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card