mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
69 lines
839 B
TypeScript
69 lines
839 B
TypeScript
import { Card } from '../../../interfaces'
|
|
import Set from '../Great Encounters'
|
|
|
|
const card: Card = {
|
|
name: {
|
|
en: "Torchic",
|
|
fr: "Poussifeu",
|
|
de: "Flemmli"
|
|
},
|
|
illustrator: "Hiroki Fuchino",
|
|
rarity: "Common",
|
|
category: "Pokemon",
|
|
|
|
set: Set,
|
|
dexId: [
|
|
255,
|
|
],
|
|
hp: 50,
|
|
types: [
|
|
"Fire",
|
|
],
|
|
|
|
stage: "Basic",
|
|
|
|
|
|
attacks: [
|
|
{
|
|
|
|
name: {
|
|
en: "Peck",
|
|
fr: "Picpic",
|
|
de: "Schnabel"
|
|
},
|
|
|
|
damage: 10,
|
|
|
|
},
|
|
{
|
|
cost: [
|
|
"Fire",
|
|
],
|
|
name: {
|
|
en: "Singe",
|
|
fr: "Roussir",
|
|
de: "Versengung"
|
|
},
|
|
effect: {
|
|
en: "The Defending Pokémon is now Burned.",
|
|
fr: "Le Pokémon Défenseur est maintenant Brûlé.",
|
|
de: "Das Verteidigende Pokémon ist jetzt verbrannt."
|
|
},
|
|
|
|
},
|
|
],
|
|
weaknesses: [
|
|
{
|
|
type: "Water",
|
|
value: "+10"
|
|
},
|
|
],
|
|
|
|
retreat: 1,
|
|
|
|
|
|
|
|
}
|
|
|
|
export default card
|