1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +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

72 lines
1.1 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Shining Fates'
const card: Card = {
dexId: [167],
set: Set,
name: {
fr: "Mimigal",
en: "Spinarak",
es: "Spinarak",
it: "Spinarak",
pt: "Spinarak",
de: "Webarak"
},
illustrator: "sowsow",
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Darkness"],
attacks: [{
name: {
fr: "Suspension",
en: "Hang Down",
es: "Prender",
it: "Tirar Giù",
pt: "Dependurar",
de: "Herunterhängen"
},
damage: 10,
cost: ["Darkness"]
}, {
name: {
fr: "Dard",
en: "Sting",
es: "Aguijonazo",
it: "Puntura",
pt: "Ferroada",
de: "Einstich"
},
damage: 20,
cost: ["Darkness", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 1,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
stage: "Basic",
description: {
en: "Although the poison from its fangs isn't that strong, it's potent enough to weaken prey that gets caught in its web."
}
}
export default card