1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-27 13:22:15 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

82 lines
1.3 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Legends Awakened'
const card: Card = {
name: {
en: "Luxio",
fr: "Luxio",
},
illustrator: "Naoyo Kimura",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
404,
],
hp: 80,
types: [
"Lightning",
],
evolveFrom: {
en: "Shinx",
fr: "Sheinux",
},
stage: "Stage1",
attacks: [
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "Spark",
fr: "Étincelle",
},
effect: {
en: "Does 10 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
fr: "Inflige 10 dégâts à 1 des Pokémon de Banc de votre adversaire. (Vous ne pouvez pas appliquer la Faiblesse et la Résistance aux Pokémon de Banc.)",
},
damage: 30,
},
{
cost: [
"Lightning",
"Colorless",
"Colorless",
],
name: {
en: "Thunderous Claw",
fr: "Griffe-tonnerre",
},
effect: {
en: "Flip a coin. If tails, discard all Lightning Energy attached to Luxio.",
fr: "Lancez une pièce. Si c'est pile, défaussez toutes les Énergies Lightning attachées à Luxio.",
},
damage: 70,
},
],
weaknesses: [
{
type: "Fighting",
value: "+20"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 1,
}
export default card