1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +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,56 @@
import { Card } from "../../../interfaces"
import Set from "../Lost Origin"
const card: Card = {
set: Set,
name: {
en: "Inkay",
fr: "Sepiatop",
es: "Inkay",
it: "Inkay",
pt: "Inkay",
de: "Iscalar"
},
rarity: "Common",
category: "Pokemon",
hp: 60,
types: ["Psychic"],
stage: "Basic",
attacks: [{
cost: ["Psychic"],
name: {
en: "Fickle Attack",
fr: "Attaque Inconstante",
es: "Ataque Impredecible",
it: "Attacco Bislacco",
pt: "Ataque Errático",
de: "Launischer Angriff"
},
effect: {
en: "Flip a coin. If tails, this attack does nothing.",
fr: "Lancez une pièce. Si c'est pile, cette attaque ne fait rien.",
es: "Lanza 1 moneda. Si sale cruz, este ataque no hace nada.",
it: "Lancia una moneta. Se esce croce, questo attacco non ha effetto.",
pt: "Jogue 1 moeda. Se sair coroa, este ataque não fará nada.",
de: "Wirf 1 Münze. Bei Zahl hat diese Attacke keine Auswirkungen."
},
damage: 30
}],
retreat: 1,
regulationMark: "F",
variants: {
"normal": true,
"reverse": true,
"holo": false
}
}
export default card