mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
91 lines
3.1 KiB
TypeScript
91 lines
3.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Evolving Skies'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
name: {
|
||
en: "Thievul",
|
||
fr: "Roublenard",
|
||
es: "Thievul",
|
||
it: "Thievul",
|
||
pt: "Thievul",
|
||
de: "Gaunux"
|
||
},
|
||
|
||
rarity: "Rare",
|
||
category: "Pokemon",
|
||
hp: 100,
|
||
types: ["Darkness"],
|
||
stage: "Stage1",
|
||
illustrator: "Kyoko Umemoto",
|
||
|
||
abilities: [{
|
||
type: "Ability",
|
||
|
||
name: {
|
||
en: "Fumbling Hands",
|
||
fr: "Mains Curieuses",
|
||
es: "Manos Titubeantes",
|
||
it: "Frugone",
|
||
pt: "Fumbling Hands",
|
||
de: "Tollpatschige Hände"
|
||
},
|
||
|
||
effect: {
|
||
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may have each player shuffle their hand and put it on the bottom of their deck. If either player put any cards on the bottom of their deck in this way, each player draws 4 cards.",
|
||
fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer l'un de vos Pokémon pendant votre tour, vous pouvez demander à chaque joueur de mélanger sa main, puis de la placer en dessous de son deck. Si l'un des joueurs place ainsi au moins une carte en dessous de son deck, chaque joueur pioche 4 cartes.",
|
||
es: "Cuando juegas este Pokémon de tu mano para hacer evolucionar a 1 de tus Pokémon durante tu turno, puedes hacer que cada jugador baraje las cartas de su mano y las ponga en la parte inferior de su baraja. Si cualquiera de los jugadores pone alguna carta en la parte inferior de su baraja de esta manera, cada jugador roba 4 cartas.",
|
||
it: "Quando giochi questo Pokémon dalla tua mano per far evolvere uno dei tuoi Pokémon durante il tuo turno, puoi far rimischiare a ciascun giocatore le carte che ha in mano e metterle in fondo al proprio mazzo. Se almeno un giocatore ha messo delle carte in fondo al proprio mazzo in questo modo, ciascun giocatore pesca quattro carte.",
|
||
pt: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may have each player shuffle their hand and put it on the bottom of their deck. If either player put any cards on the bottom of their deck in this way, each player draws 4 cards.",
|
||
de: "Wenn du dieses Pokémon während deines Zuges aus deiner Hand spielst, um 1 deiner Pokémon zu entwickeln, kannst du beide Spieler veranlassen, ihre Handkarten zu mischen und sie unter ihr Deck zu legen. Wenn ein oder beide Spieler auf diese Weise mindestens 1 Karte unter ihr Deck gelegt haben, zieht jeder Spieler 4 Karten."
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Tail Smack",
|
||
fr: "Coup de Queue",
|
||
es: "Bofetón Cola",
|
||
it: "Codasberla",
|
||
pt: "Tail Smack",
|
||
de: "Schweifschlag"
|
||
},
|
||
|
||
damage: 60,
|
||
cost: ["Colorless", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Grass",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 1,
|
||
dexId: [828],
|
||
|
||
evolveFrom: {
|
||
en: "Nickit",
|
||
fr: "Goupilou",
|
||
es: "Nickit",
|
||
it: "Nickit",
|
||
pt: "Nickit",
|
||
de: "Kleptifux"
|
||
},
|
||
|
||
description: {
|
||
en: "With a lithe body and sharp claws, it goes around stealing food and eggs. Boltund is its natural enemy."
|
||
},
|
||
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card
|