mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
61 lines
786 B
TypeScript
61 lines
786 B
TypeScript
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
|