1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00

feat: Added Lost Origin datas (#360)

This commit is contained in:
2022-09-14 00:24:11 +02:00
committed by GitHub
parent 7467090e2c
commit 0146baaf82
248 changed files with 16467 additions and 0 deletions

View File

@ -0,0 +1,53 @@
import { Card } from "../../../interfaces"
import Set from "../Lost Origin"
const card: Card = {
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