1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 09:47:51 +00:00
Florian Bouillon b46b2c4fb9
Updated Evolving Skies with attacks and other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-28 16:54:37 +02:00

74 lines
2.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 '../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 lun 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 lun 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
}
export default card