mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-08-04 13:21:58 +00:00
feat: add missing tcg pocket promos (#843)
This commit is contained in:
44
data/Pokémon TCG Pocket/Promos-A/100.ts
Normal file
44
data/Pokémon TCG Pocket/Promos-A/100.ts
Normal file
@@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Promos-A"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Weavile"
|
||||
},
|
||||
|
||||
illustrator: "Satoshi Shirai",
|
||||
rarity: "Three Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Darkness"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Sneasel"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "Evolution made it even more devious.\nIt communicates by clawing signs in boulders."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Slash"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Darkness"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 0
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user