mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 17:09:19 +00:00
feat: Add Stellar Crown (#533)
This commit is contained in:
54
data/Scarlet & Violet/Stellar Crown/082.ts
Normal file
54
data/Scarlet & Violet/Stellar Crown/082.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Stellar Crown"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Lucario ex",
|
||||
fr: "Lucario-ex",
|
||||
es: "Lucario ex",
|
||||
it: "Lucario-ex",
|
||||
pt: "Lucario ex",
|
||||
de: "Lucario-ex"
|
||||
},
|
||||
|
||||
rarity: "Double rare",
|
||||
category: "Pokemon",
|
||||
hp: 250,
|
||||
types: ["Fighting"],
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Low Kick",
|
||||
fr: "Balayage",
|
||||
es: "Patada Baja",
|
||||
it: "Colpo Basso",
|
||||
pt: "Rasteira",
|
||||
de: "Fußkick"
|
||||
},
|
||||
|
||||
damage: 50
|
||||
}, {
|
||||
cost: ["Fighting", "Fighting", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Aura Knuckle",
|
||||
fr: "Poing Aura",
|
||||
es: "Nudillo Aural",
|
||||
it: "Aurapugno",
|
||||
pt: "Punho de Aura",
|
||||
de: "Aurafaust"
|
||||
},
|
||||
|
||||
damage: 120
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user