1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-29 10:59:54 +00:00
Khaleeq Ahmad a597759d9d
fix: Pocket card data fixes (#659)
Co-authored-by: Khaleeq Ahmad <1710642+khaleeqahmad@users.noreply.github.com>
2025-02-19 21:52:42 +01:00

49 lines
792 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Mythical Island"
const card: Card = {
set: Set,
name: {
en: "Scolipede"
},
illustrator: "5ban Graphics",
category: "Pokemon",
hp: 140,
types: ["Darkness"],
evolveFrom: {
en: "Whirlipede"
},
description: {
en: "Scolipede latches on to its prey with the claws on its neck before slamming them into the ground and jabbing them with its claws' toxic spikes."
},
stage: "Stage2",
attacks: [{
name: {
en: "Venoshock"
},
damage: "70+",
cost: ["Darkness", "Colorless"],
effect: {
en: "If your opponent's Active Pokémon is Poisoned, this attack does 50 more damage."
}
}],
weaknesses: [{
type: "Fighting",
value: "+20"
}],
retreat: 2,
rarity: "Two Diamond"
}
export default card