1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-31 20:01:58 +00:00

feat: Paldean Fates and Temporal Forces (#478)

This commit is contained in:
2024-03-25 00:30:17 +01:00
committed by GitHub
parent 0c29886812
commit 2d27a129a1
472 changed files with 25187 additions and 7 deletions

View File

@@ -0,0 +1,51 @@
import { Card } from "../../../interfaces"
import Set from "../Paldean Fates"
const card: Card = {
set: Set,
name: {
en: "Luxio",
fr: "Luxio",
es: "Luxio",
it: "Luxio",
pt: "Luxio"
},
rarity: "Shiny rare",
category: "Pokemon",
hp: 90,
types: ["Lightning"],
stage: "Stage1",
attacks: [{
cost: ["Lightning"],
name: {
en: "Zap Kick",
fr: "Coup de Pied Ravageur",
es: "Electropatada",
it: "Dinamocalcio",
pt: "Chute Zap"
},
damage: 30
}, {
cost: ["Lightning", "Colorless", "Colorless"],
name: {
en: "Head Bolt",
fr: "Éclair Frontal",
es: "Rayo de Cabeza",
it: "Zuccalampo",
pt: "Raio de Cabeça"
},
damage: 60
}],
retreat: 1,
regulationMark: "G"
}
export default card