mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 00:09:18 +00:00
feat: Add Poké Card Creator Pack cards (#184)
Signed-off-by: Avior <github@avior.me>
This commit is contained in:
60
data/EX/Poké Card Creator Pack/2.ts
Normal file
60
data/EX/Poké Card Creator Pack/2.ts
Normal file
@ -0,0 +1,60 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../Poké Card Creator Pack'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Wurmple"
|
||||
},
|
||||
illustrator: "Katie Gross",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
265,
|
||||
],
|
||||
hp: 50,
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
stage: "Basic",
|
||||
retreat: 1,
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Gooey Thread"
|
||||
},
|
||||
effect: {
|
||||
en: "The Defending Pokémon can't retreat until the end of your opponent's next turn."
|
||||
},
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Grass",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Poison Claws"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If tails, this attack does nothing."
|
||||
},
|
||||
damage: 40,
|
||||
|
||||
}
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire"
|
||||
},
|
||||
]
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user