1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-14 21:59:51 +00:00
Files
cards-database/data/Sword & Shield/Sword & Shield/126.ts
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

94 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 '../Sword & Shield'
const card: Card = {
name: {
en: "Thievul",
fr: "Roublenard",
es: "Thievul",
it: "Thievul",
pt: "Thievul",
de: "Gaunux"
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 100,
types: [
"Darkness",
],
evolveFrom: {
en: "Nickit",
fr: "Goupilou",
},
stage: "Stage1",
attacks: [
{
cost: [
"Darkness",
],
name: {
en: "Thief",
fr: "Larcin",
es: "Ladrón",
it: "Furto",
pt: "Roubar",
de: "Raub"
},
effect: {
en: "Your opponent reveals their hand. Choose a card you find there and put it on the bottom of their deck.",
fr: "Votre adversaire dévoile sa main. Choisissez-y une carte, puis placez-la en dessous de son deck.",
es: "Tu rival enseña las cartas de su mano. Elige 1 carta que encuentres entre ellas y ponla en la parte inferior de su baraja.",
it: "Il tuo avversario mostra le carte che ha in mano. Scegline una e mettila in fondo al suo mazzo.",
pt: "Seu oponente revela a própria mão. Escolha 1 carta que encontrar lá e coloque-a como a carta de baixo do baralho dele(a).",
de: "Dein Gegner zeigt dir seine Handkarten. Wähle 1 Karte, die du dort findest, und lege sie unter sein Deck."
},
damage: 20,
},
{
cost: [
"Darkness",
"Colorless",
"Colorless",
],
name: {
en: "Darkness Fang",
fr: "Croc Obscur",
es: "Colmillo de Oscuridad",
it: "Oscurizanna",
pt: "Presa Sombria",
de: "Fänge der Dunkelheit"
},
damage: 90,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card