mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-15 08:59:18 +00:00
feat: Add Surging Sparks (#576)
This commit is contained in:
41
data/Scarlet & Violet/Surging Sparks/070.ts
Normal file
41
data/Scarlet & Violet/Surging Sparks/070.ts
Normal file
@ -0,0 +1,41 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Surging Sparks"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Togepi",
|
||||
fr: "Togepi",
|
||||
es: "Togepi",
|
||||
it: "Togepi",
|
||||
pt: "Togepi",
|
||||
de: "Togepi"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Pound",
|
||||
fr: "Écras'Face",
|
||||
es: "Destructor",
|
||||
it: "Botta",
|
||||
pt: "Pancada",
|
||||
de: "Klaps"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user