mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 16:39:18 +00:00
feat: Add Surging Sparks (#576)
This commit is contained in:
41
data/Scarlet & Violet/Surging Sparks/205.ts
Normal file
41
data/Scarlet & Violet/Surging Sparks/205.ts
Normal file
@ -0,0 +1,41 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Surging Sparks"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Phanpy",
|
||||
fr: "Phanpy",
|
||||
es: "Phanpy",
|
||||
it: "Phanpy",
|
||||
pt: "Phanpy",
|
||||
de: "Phanpy"
|
||||
},
|
||||
|
||||
rarity: "Illustration rare",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Fighting"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Fighting"],
|
||||
|
||||
name: {
|
||||
en: "Headbutt",
|
||||
fr: "Coup d'Boule",
|
||||
es: "Golpe Cabeza",
|
||||
it: "Bottintesta",
|
||||
pt: "Cabeçada",
|
||||
de: "Kopfnuss"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
regulationMark: "H"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user