mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 01:19:18 +00:00
feat: Add Surging Sparks (#576)
This commit is contained in:
41
data/Scarlet & Violet/Surging Sparks/073.ts
Normal file
41
data/Scarlet & Violet/Surging Sparks/073.ts
Normal file
@ -0,0 +1,41 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Surging Sparks"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Marill",
|
||||
fr: "Marill",
|
||||
es: "Marill",
|
||||
it: "Marill",
|
||||
pt: "Marill",
|
||||
de: "Marill"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Psychic"],
|
||||
|
||||
name: {
|
||||
en: "Rolling Tackle",
|
||||
fr: "Roulé-Boulé",
|
||||
es: "Placaje Giro",
|
||||
it: "Rollazione",
|
||||
pt: "Golpe de Colisão Rolante",
|
||||
de: "Rolltackle"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user