1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00

59 lines
665 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Arceus'
const card: Card = {
name: {
en: "Treecko",
},
illustrator: "TOKIYA",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
252,
],
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Tail Crush",
},
effect: {
en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage.",
},
damage: "20+",
},
],
weaknesses: [
{
type: "Fire",
value: "+10"
},
],
resistances: [
{
type: "Water",
value: "-20"
},
],
retreat: 1,
}
export default card