1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-17 01:49:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,66 @@
import { Card } from '../../../interfaces'
import Set from '../Secret Wonders'
const card: Card = {
name: {
en: "Smeargle",
fr: "Queulorior",
},
illustrator: "Masakazu Fukuda",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
235,
],
hp: 70,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
name: {
en: "Color Pick",
fr: "Choix de couleur",
},
effect: {
en: "Search your deck for up to 3 basic Energy cards, show them to your opponent, and put them into your hand. Shuffle your deck afterward.",
fr: "Choisissez dans votre deck jusqu'à 3 cartes Énergie de base, montrez-les à votre adversaire et placez-les dans votre main. Ensuite, mélangez votre deck.",
},
},
{
cost: [
"Colorless",
],
name: {
en: "Trace",
fr: "Calque",
},
effect: {
en: "Flip a coin. If heads, choose an attack on 1 of your opponent's Benched Pokémon. Trace copies that attack except for its Energy cost. (You must still do anything else required for that attack.) Smeargle performs that attack.",
fr: "Lancez une pièce. Si c'est face, choisissez une attaque d'1 des Pokémon de Banc de votre adversaire. Calque copie cette attaque, Coût en Énergie excepté. (Vous devez toujours faire ce qu'indique l'attaque.) Queulorior utilise cette attaque.",
},
},
],
weaknesses: [
{
type: "Fightning",
value: "+10"
},
],
retreat: 1,
}
export default card