1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

61 lines
838 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Lost Origin"
const card: Card = {
dexId: [198],
set: Set,
name: {
en: "Murkrow",
fr: "Cornèbre",
es: "Murkrow",
it: "Murkrow",
pt: "Murkrow",
de: "Kramurx"
},
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Darkness"],
stage: "Basic",
attacks: [{
cost: ["Colorless"],
name: {
en: "Peck",
fr: "Picpic",
es: "Picotazo",
it: "Beccata",
pt: "Bicada",
de: "Pikser"
},
damage: 10
}, {
cost: ["Darkness", "Colorless"],
name: {
en: "Wing Attack",
fr: "Cru-Ailes",
es: "Ataque Ala",
it: "Attacco d'Ala",
pt: "Ataque de Asa",
de: "Flügelschlag"
},
damage: 30
}],
retreat: 1,
regulationMark: "F",
variants: {
"normal": true,
"reverse": true,
"holo": false
}
}
export default card