1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Benjamin Rousseliere 91dc66a494
Add missing pokemon card dex ids (#494)
Co-authored-by: Benjamin Rousseliere <benjamin.r@galadrim.fr>
2024-06-18 00:34:39 +02:00

55 lines
1021 B
TypeScript

import { Card } from "../../../interfaces"
import Set from "../Lost Origin"
const card: Card = {
dexId: [667],
set: Set,
name: {
en: "Litleo",
fr: "Hélionceau",
es: "Litleo",
it: "Litleo",
pt: "Litleo",
de: "Leufeo"
},
rarity: "Common",
category: "Pokemon",
hp: 70,
types: ["Fire"],
stage: "Basic",
attacks: [{
cost: ["Fire"],
name: {
en: "Singe",
fr: "Roussi",
es: "Quemadura",
it: "Scottata",
pt: "Chamuscada",
de: "Versengung"
},
effect: {
en: "Your opponent's Active Pokémon is now Burned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé.",
es: "El Pokémon Activo de tu rival pasa a estar Quemado.",
it: "Il Pokémon attivo del tuo avversario viene bruciato.",
pt: "O Pokémon Ativo do seu oponente agora está Queimado.",
de: "Das Aktive Pokémon deines Gegners ist jetzt verbrannt."
}
}],
retreat: 2,
regulationMark: "F",
variants: {
"normal": true,
"reverse": true,
"holo": false
}
}
export default card