mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
72 lines
1.1 KiB
TypeScript
72 lines
1.1 KiB
TypeScript
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
|