1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 13:22:15 +00:00
Florian Bouillon 46220745ce
Pop serie do not report any sets (#27)
* rename to another name
* renamed
* Renamed references
2021-06-02 12:13:12 +02:00

74 lines
908 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../POP Series 8'
const card: Card = {
name: {
en: "Luxio",
},
illustrator: "Ken Sugimori",
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"
},
],
}
export default card