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

68 lines
1.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Primal Clash'
const card: Card = {
name: {
en: "Treecko",
fr: "Arcko",
es: "Treecko",
it: "Treecko",
pt: "Treecko",
de: "Geckarbor"
},
illustrator: "Akira Komayama",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
252,
],
hp: 60,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Quick Attack",
fr: "Vive-Attaque",
es: "Ataque Rápido",
it: "Attacco Rapido",
pt: "Attacco Rapido",
de: "Ruckzuckhieb"
},
effect: {
en: "Flip a coin. If heads, this attack does 10 more damage.",
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts supplémentaires.",
es: "Lanza una moneda. Si sale cara, este ataque hace 10 puntos de daño más.",
it: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts supplémentaires.",
pt: "Lancia una moneta. Se esce testa, questo attacco infligge 10 danni in più.",
de: "Wirf 1 Münze. Bei \"Kopf\" fügt dieser Angriff 10 weitere Schadenspunkte zu."
},
damage: "10+",
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
}
export default card