1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-16 13:39:54 +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

92 lines
1.8 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 '../Darkness Ablaze'
const card: Card = {
name: {
en: "Gothita",
fr: "Scrutella",
es: "Gothita",
it: "Gothita",
pt: "Gothita",
de: "Mollimorba"
},
illustrator: "Mizue",
rarity: "Common",
category: "Pokemon",
set: Set,
hp: 60,
types: [
"Psychic",
],
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Fortunate Eye",
fr: "Regard Chanceux",
es: "Ojo Fortuito",
it: "Fortunocchio",
pt: "Olho da Sorte",
de: "Flüchtiger Glücksblick"
},
effect: {
en: "Look at the top 5 cards of your opponents deck and put them back in any order.",
fr: "Regardez les 5 cartes du dessus du deck de votre adversaire, puis replacez-les dans lordre de votre choix.",
es: "Mira las 5 primeras cartas de la baraja de tu rival y vuelve a ponerlas en la parte superior de su baraja en el orden que quieras.",
it: "Guarda le prime cinque carte del mazzo del tuo avversario e rimettile a posto nellordine che preferisci.",
pt: "Olhe as 5 cartas de cima do baralho do seu oponente e coloque-as de volta em qualquer ordem.",
de: "Schau dir die obersten 5 Karten des Decks deines Gegners an und lege sie in beliebiger Reihenfolge zurück auf sein Deck."
},
},
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Gentle Slap",
fr: "Gifle Douce",
es: "Bofetada Gentil",
it: "Schiaffetto",
pt: "Tapinha",
de: "Sanfter Hieb"
},
damage: 30,
},
],
weaknesses: [
{
type: "Darkness",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
retreat: 1,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card