mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-28 02:40:11 +00:00
* feat: Add A1a Signed-off-by: Avior <git@avior.me> * fix: test failing Signed-off-by: Avior <git@avior.me> --------- Signed-off-by: Avior <git@avior.me>
48 lines
798 B
TypeScript
48 lines
798 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<br />its neck before slamming them into the ground<br />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 |