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/081.ts
Normal file
54
data/Sword & Shield/Crown Zenith/081.ts
Normal file
@ -0,0 +1,54 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Crown Zenith"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Skrelp",
|
||||
fr: "Venalgue",
|
||||
es: "Skrelp",
|
||||
it: "Skrelp",
|
||||
pt: "Skrelp",
|
||||
de: "Algitt"
|
||||
},
|
||||
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Darkness"],
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
cost: ["Darkness"],
|
||||
|
||||
name: {
|
||||
en: "Tackle",
|
||||
fr: "Charge",
|
||||
es: "Placaje",
|
||||
it: "Azione",
|
||||
pt: "Investida",
|
||||
de: "Tackle"
|
||||
},
|
||||
|
||||
damage: 10
|
||||
}, {
|
||||
cost: ["Darkness", "Colorless"],
|
||||
|
||||
name: {
|
||||
en: "Melt",
|
||||
fr: "Dissolution",
|
||||
es: "Derretir",
|
||||
it: "Liquefazione",
|
||||
pt: "Derreter",
|
||||
de: "Schmelzen"
|
||||
},
|
||||
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
regulationMark: "F"
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user