mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 01:19:18 +00:00
feat: Add Mythical Island set (#624)
* 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>
This commit is contained in:
48
data/Pokémon TCG Pocket/Mythical Island/055.ts
Normal file
48
data/Pokémon TCG Pocket/Mythical Island/055.ts
Normal file
@ -0,0 +1,48 @@
|
||||
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
|
Reference in New Issue
Block a user