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/102.ts
Normal file
54
data/Scarlet & Violet/Stellar Crown/102.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Stellar Crown"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Meltan",
|
||||
fr: "Meltan",
|
||||
es: "Meltan",
|
||||
it: "Meltan",
|
||||
pt: "Meltan",
|
||||
de: "Meltan"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Metal"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Metal"],
|
||||
|
||||
name: {
|
||||
en: "Stampede",
|
||||
fr: "Ruée",
|
||||
es: "Estampida",
|
||||
it: "Fuggi Fuggi",
|
||||
pt: "Estouro",
|
||||
de: "Zertrampeln"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Metal", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Beam",
|
||||
fr: "Rayon",
|
||||
es: "Transmisión",
|
||||
it: "Raggio",
|
||||
pt: "Feixe",
|
||||
de: "Strahl"
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user