1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-22 19:02:10 +00:00
2021-11-22 15:08:42 +01:00

69 lines
746 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Poké Card Creator Pack'
const card: Card = {
name: {
en: "Treecko"
},
illustrator: "Mark Kraus",
rarity: "None",
category: "Pokemon",
set: Set,
dexId: [
252,
],
hp: 60,
types: [
"Grass",
],
stage: "Basic",
retreat: 1,
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Tackle"
},
damage: 10,
},
{
cost: [
"Grass",
"Colorless",
"Colorless",
],
name: {
en: "Poison Claws"
},
effect: {
en: 'The Defending Pokémon is now Poisoned. '
},
damage: 30,
}
],
weaknesses: [
{
type: "Fire"
},
],
resistances: [
{
type: "Water",
value: "-30"
},
],
}
export default card