mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 16:39:18 +00:00
feat: Add Crown Zenith (#416)
This commit is contained in:
54
data/Sword & Shield/Crown Zenith/GG34.ts
Normal file
54
data/Sword & Shield/Crown Zenith/GG34.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Crown Zenith"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Mareep",
|
||||
fr: "Wattouat",
|
||||
es: "Mareep",
|
||||
it: "Mareep",
|
||||
pt: "Mareep",
|
||||
de: "Voltilamm"
|
||||
},
|
||||
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Lightning"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Rear Kick",
|
||||
fr: "Ruade",
|
||||
es: "Patada Trasera",
|
||||
it: "Retrocalcio",
|
||||
pt: "Chute Traseiro",
|
||||
de: "Rückwärtskick"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Lightning", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Electro Ball",
|
||||
fr: "Boule Élek",
|
||||
es: "Bola Voltio",
|
||||
it: "Energisfera",
|
||||
pt: "Bola Elétrica",
|
||||
de: "Elektroball"
|
||||
},
|
||||
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "E"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user