1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 16:39: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,38 @@
import { Card } from "../../../interfaces"
import Set from "../Lost Origin"
const card: Card = {
set: Set,
name: {
en: "Cook",
fr: "Cuisinier",
es: "Chef",
it: "Cuoco",
pt: "Chef",
de: "Küchenchef"
},
rarity: "Ultra Rare",
category: "Trainer",
effect: {
en: "Heal 70 damage from your Active Pokémon.",
fr: "Soignez 70 dégâts de votre Pokémon Actif.",
es: "Cura 70 puntos de daño a tu Pokémon Activo.",
it: "Cura il tuo Pokémon attivo da 70 danni.",
pt: "Cure 70 pontos de dano do seu Pokémon Ativo.",
de: "Heile 70 Schadenspunkte bei deinem Aktiven Pokémon."
},
trainerType: "Supporter",
regulationMark: "E",
variants: {
"normal": false,
"reverse": false,
"holo": true
}
}
export default card