mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +00:00
feat: Add Stellar Crown (#533)
This commit is contained in:
54
data/Scarlet & Violet/Stellar Crown/094.ts
Normal file
54
data/Scarlet & Violet/Stellar Crown/094.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Stellar Crown"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Impidimp",
|
||||
fr: "Grimalin",
|
||||
es: "Impidimp",
|
||||
it: "Impidimp",
|
||||
pt: "Impidimp",
|
||||
de: "Bähmon"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Darkness"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Smack",
|
||||
fr: "Claque",
|
||||
es: "Palmetazo",
|
||||
it: "Schiaffo",
|
||||
pt: "Estalo",
|
||||
de: "Klatscher"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Darkness", "Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Claw Slash",
|
||||
fr: "Tranch'Griffe",
|
||||
es: "Cuchillada Garra",
|
||||
it: "Lacerartiglio",
|
||||
pt: "Golpe de Garra",
|
||||
de: "Klauenschlitzer"
|
||||
},
|
||||
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user