1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 15:42:11 +00:00
Florian Bouillon 9138eedb16
Add swsh variants (#42)
* Updated Kalos Starter Set data

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed XY set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Fixed some more XY sets

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Added the rest of the SWSH variants

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-02 12:34:21 +00:00

86 lines
1.6 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Champion\'s Path'
const card: Card = {
name: {
en: "Inkay",
fr: "Sepiatop",
es: "Inkay",
it: "Inkay",
pt: "Inkay",
de: "Iscalar"
},
illustrator: "sui",
rarity: "Common",
category: "Pokemon",
set: Set,
hp: 60,
types: [
"Darkness",
],
attacks: [
{
cost: [
"Darkness",
],
name: {
en: "Tackle",
fr: "Charge",
es: "Placaje",
it: "Azione",
pt: "Investida",
de: "Tackle"
},
damage: 10,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Attack from Behind",
fr: "Attaque Traîtresse",
es: "Ataque por Detrás",
it: "Attacco alle Spalle",
pt: "Ataque por Trás",
de: "Hinterhältiger Angriff"
},
effect: {
en: "If your opponents Active Pokémon is Confused, this attack does 50 more damage.",
fr: "Si le Pokémon Actif de votre adversaire est Confus, cette attaque inflige 50 dégâts supplémentaires.",
es: "Si el Pokémon Activo de tu rival está Confundido, este ataque hace 50 puntos de daño más.",
it: "Se il Pokémon attivo del tuo avversario è confuso, questo attacco infligge 50 danni in più.",
pt: "Se o Pokémon Ativo do seu oponente estiver Confuso, este ataque causará 50 pontos de dano a mais.",
de: "Wenn das Aktive Pokémon deines Gegners verwirrt ist, fügt diese Attacke 50 Schadenspunkte mehr zu."
},
damage: "20+",
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card